{ "root": true, "plugins": ["prettier", "react"], "extends": ["eslint:recommended", "prettier"], "env": { "browser": true, "es6": true, "node": true }, "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 6, "ecmaFeatures": { "classes": true, "jsx": true }, "sourceType": "module" }, "rules": { "prettier/prettier": [ "warn", { "endOfLine": "auto", "singleQuote": true } ], "strict": 0, "eqeqeq": 1, "no-console": 1, "no-irregular-whitespace": 1, "no-use-before-define": [2, "nofunc"], "no-unused-vars": [ 1, { "vars": "all", "args": "after-used", "argsIgnorePattern": "(^_|^next$)" } ], "arrow-parens": [1, "as-needed"], "no-dupe-keys": 2, "no-dupe-args": 2, "react/no-deprecated": 2, "react/no-direct-mutation-state": 2, "react/no-multi-comp": 1, "react/no-unused-prop-types": 1, "react/no-typos": 2, "react/prefer-stateless-function": 1, "react/prop-types": 1, "react/react-in-jsx-scope": 2, "react/jsx-no-duplicate-props": 2, "react/jsx-no-target-blank": 2, "react/jsx-no-undef": 2, "react/jsx-pascal-case": 2, "react/jsx-uses-react": 2, "react/jsx-uses-vars": 2, "semi": 1 }, "settings": { "react": { "version": "16.3" } } }