{ "env": { "node": true, "es6": true }, "plugins": [ "react" ], "ecmaFeatures": { "arrowFunctions": true, "binaryLiterals": false, "blockBindings": true, "classes": true, "defaultParams": true, "destructuring": true, "forOf": true, "generators": true, "modules": true, "objectLiteralComputedProperties": true, "objectLiteralDuplicateProperties": false, "objectLiteralShorthandMethods": true, "objectLiteralShorthandProperties": true, "octalLiterals": false, "regexUFlag": false, "regexYFlag": false, "superInFunctions": true, "templateStrings": true, "unicodeCodePointEscapes": true, "globalReturn": false, "jsx": true }, "rules": { // possible errors "comma-dangle": [ 2, "always-multiline" ], "no-console": [ 2, "always" ], // best practices "default-case": [ 2 ], "guard-for-in": [ 2 ], "no-else-return": [ 2 ], "no-eq-null": [ 2 ], "no-fallthrough": [ 2 ], "no-floating-decimal": [ 2 ], "no-self-compare": [ 2 ], "no-throw-literal": [ 2 ], "no-warning-comments": [ 1, { "terms": [ "todo", "fixme" ], "location": "start" } ], "radix": [ 1 ], "wrap-iife": [ 2 ], // strict mode "strict": [ 2, "global" ], // variables "no-catch-shadow": [ 2 ], "no-undefined": [ 2 ], // node environment "no-mixed-requires": [ 2 ], "no-new-require": [ 2 ], "no-path-concat": [ 1 ], "no-restricted-modules": [ 1 ], // style "indent": [ 2, 2, { "indentSwitchCase" : true } ], "brace-style": [ 2, "1tbs" ], "camelcase": [ 2 ], "comma-spacing": [ 2, { "before": false, "after": true } ], "consistent-this": [ 2, "self" ], "eol-last": [ 2 ], "key-spacing": [ 2, { "beforeColon": true, "afterColon": true } ], "max-nested-callbacks": [ 1, 3 ], "new-cap": [ 2 ], "no-inline-comments": [ 1 ], "no-lonely-if": [ 1 ], "no-multiple-empty-lines": [ 2 ], "no-nested-ternary": [ 2 ], "quote-props": [ 2, "as-needed" ], "quotes": [ 2, "single", "avoid-escape" ], "semi": [ 2, "always" ], "space-after-keywords": [ 2, "always" ], "space-before-blocks": [ 2, "always" ], "space-before-function-parentheses": [ 2, "never" ], "space-in-brackets": [ 1, "always" ], "space-infix-ops": [ 2 ], "space-return-throw-case": [ 2 ], "space-unary-ops": [ 2, { words : true, nonwords : true } ], "spaced-line-comment": [ 2 ], // es6 "no-var": [ 2 ], "generator-star": [ 2 ], // legacy "max-depth": [ 1, 2 ], "max-len": [ 1, 100 ], "max-params": [ 1, 4 ], "max-statements": [ 1, 15 ], "no-bitwise": [ 1 ], "no-plusplus": [ 1 ], // eslint-plugin-react "react/jsx-uses-react": [ 2 ], "react/no-did-mount-set-state": [ 2 ], "react/no-did-update-set-state": [ 2 ], "react/prop-types": [ 1 ], "react/wrap-multilines": [ 2 ], } }