{ "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 7, "sourceType": "module", "ecmaFeatures": { "jsx": true, "spread": true, "impliedStrict": true, "arrowFunctions": true, "blockBindings": true, "experimentalObjectRestSpread": true } }, "env": { "browser": true, "node": true, "es6": true }, "plugins": [ "react" ], "rules": { "indent": [2, 2], "quotes": [2, "single"], "linebreak-style": [2, "windows"], "semi": [2, "always"], "comma-dangle": [1, "always-multiline"], "constructor-super": 2, "no-console": 1, "no-confusing-arrow": 2, "no-constant-condition": 2, "no-class-assign": 2, "no-unused-vars": 2, "no-unused-expressions": 2, "no-undef": 2, "no-const-assign": 2, "no-dupe-class-members": 2, "no-this-before-super": 2, "object-shorthand": [2, "always"], "prefer-spread": 1, "prefer-template": 1, "require-yield": 2, "jsx-quotes": 1, "react/forbid-prop-types": 1, "react/jsx-boolean-value": 1, "react/jsx-closing-bracket-location": 1, "react/jsx-curly-spacing": 1, "react/jsx-indent-props": 1, "react/jsx-max-props-per-line": 1, "react/jsx-no-bind": 1, "react/jsx-no-duplicate-props": 1, "react/jsx-no-undef": 1, "react/sort-prop-types": 1, "react/jsx-sort-props": 1, "react/jsx-uses-react": 1, "react/jsx-uses-vars": 1, "react/no-danger": 1, "react/no-direct-mutation-state": 1, "react/no-multi-comp": 1, "react/no-unknown-property": 1, "react/prefer-es6-class": 1, "react/prop-types": 1, "react/react-in-jsx-scope": 1, "react/require-extension": "off", "react/self-closing-comp": 1, "react/sort-comp": 1, "react/wrap-multilines": "off" }, "extends": "eslint:recommended" }