UNPKG

style-manager

Version:

Manage style, add/replace/delete rules, support media.

67 lines (63 loc) 1.68 kB
{ "parser": "babel-eslint", "ecmaFeatures": { "jsx": true, "modules": true, "arrowFunctions": true, "binaryLiterals": true, "blockBindings": true, "classes": true, "defaultParams": true, "destructuring": true, "forOf": true, "generators": true, "modules": true, "objectLiteralComputedProperties": true, "objectLiteralDuplicateProperties": true, "objectLiteralShorthandMethods": true, "objectLiteralShorthandProperties": true, "octalLiterals": true, "regexUFlag": true, "regexYFlag": true, "restParams": true, "spread": true, "superInFunctions": true, "templateStrings": true, "unicodeCodePointEscapes": true, "globalReturn": true }, "env": { "browser": true, "node": true }, "globals": { "__DEBUG__": false }, "rules": { "no-shadow": [0], "indent": [2, 4], "curly": [0, "multi-line"], "strict": [2, "never"], "comma-dangle": [2, "never"], "eqeqeq": [2, "smart"], "no-multi-spaces": [2], "no-underscore-dangle": [0], "comma-style": [2, "last"], "eol-last": [2], "no-spaced-func": [2], "space-after-keywords": [2, "always"], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "no-mixed-spaces-and-tabs": [2, "smart-tabs"], "no-trailing-spaces": [2, { "skipBlankLines": true }], "quotes": [2, "single"], "strict": [2, "never"], "no-unused-vars": [2, {"vars": "all", "args": "after-used"}], "no-use-before-define": [2, "nofunc"], "react/jsx-uses-react": 2, "react/jsx-uses-vars": 2, "react/react-in-jsx-scope": 2 }, "plugins": [ "react" ] }