UNPKG

antd-theme-generator

Version:

This a script to generate color specific styles less file and which you can use to change theme dynamically in browser

42 lines (41 loc) 660 B
module.exports = { 'env': { 'browser': true, 'commonjs': true, 'node': true, 'es6': true }, 'parserOptions': { 'ecmaVersion': 8 }, 'extends': 'eslint:recommended', 'rules': { 'indent': [ 'error', 2, { 'FunctionDeclaration': { 'parameters': 'first' }, 'FunctionExpression': { 'parameters': 'first' }, 'CallExpression': { 'arguments': 'first' } } ], 'linebreak-style': [ 'error', 'unix' ], 'quotes': [ 'error', 'single' ], 'semi': [ 'error', 'always' ] } };