{ "env": { "browser": true, "node": true, "es6": true }, "parser": "babel-eslint", "plugins": [ "react" ], "settings": { "react": { "version": "16.0" } }, "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "jsx": true, "experimentalObjectRestSpread": true } }, "rules": { "block-scoped-var": 2, "camelcase": 2, "comma-dangle": [2, "never"], "comma-spacing": [2, { "before": false, "after": true }], "comma-style": [2, "last"], "complexity": 0, "curly": [2, "all"], "dot-notation": 0, "eqeqeq": [2, "allow-null"], "global-strict": 0, "guard-for-in": 2, "indent": 2, "jsx-quotes": [2, "prefer-double"], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "keyword-spacing": ["error"], "max-depth": 0, "max-len": [2, 120, 4, { "ignoreComments": true, "ignoreUrls": true }], "max-params": 0, "max-statements": 0, "new-cap": 0, "no-bitwise": 0, "no-caller": 2, "no-cond-assign": 0, "no-constant-condition": 2, "no-debugger": 0, "no-empty": 0, "no-eval": 0, "no-iterator": 0, "no-loop-func": 0, "no-mixed-spaces-and-tabs": [2, "smart-tabs"], "no-multi-str": 0, "no-new": 0, "no-plusplus": 0, "no-proto": 0, "no-script-url": 0, "no-shadow": 0, "no-trailing-spaces": 0, "no-undef": 2, "no-unused-vars": [2, {"vars": "all", "args": "none"}], "no-use-before-define": [2, "nofunc"], "padded-blocks": [2, "never"], "quotes": [2, "single"], "react/jsx-uses-react": 2, "react/jsx-uses-vars": 2, "react/no-did-update-set-state": 2, "react/no-direct-mutation-state": 2, "react/no-is-mounted": 2, "react/prefer-stateless-function": 2, "spaced-comment": [2, "always"], "strict": 0, "wrap-iife": [2, "inside"] } }