JSS: An authoring tool for CSS which uses JavaScript

JSS

A lib for generating Style Sheets with JavaScript.

For documentation see our docs.

Community

.bithoundrc

{
  "ignore": [
    "benchmark/**",
    "docs/**",
    "dist/**",
    "test/**",
    "node_modules/**"
  ],
  "tests": [
    "/tests"
  ]
}

.eslintignore

flow-typed/
**/node_modules/**
packages/**/dist/
examples/**/static/
*.ts
*.tsx

.eslintrc.js

module.exports = {
  extends: ['jss', 'prettier', 'prettier/react'],
  parser: 'babel-eslint',
  env: {
    mocha: true,
    browser: true
  },
  globals: {
    benchmark: true,
    __VERSION__: true,
    CSS: true
  },
  overrides: [
    {
      files: ['docs/*.md', 'docs/**/*.md'],
      rules: {
        'no-console': 'off'
      }
    },
    {
      files: ['examples/**/*.js'],
      rules: {
        'import/no-unresolved': 'off',
        'react/prop-types': 'off',
        'no-console': 'off',
        'import/extensions': 'off',
        'import/prefer-default-export': 'off',
        'jsx-a11y/label-has-for': 'off',
        'jsx-a11y/label-has-associated-control': 'off'
      }
    }
  ]
}

Download details:

Author: cssinjs
Source: https://github.com/cssinjs/jss

License:  MIT license

#css #javascript 

JSS: An authoring tool for CSS which uses JavaScript
3.35 GEEK