{ "parser": "babel-eslint", "extends": "airbnb", "env": { "browser": true, "node": true }, "rules": { "comma-dangle": "off", "global-require": "off", "import/no-extraneous-dependencies": "off", "import/no-unresolved": "off", "import/extensions": "off", "react/jsx-filename-extension": "off", "react/prefer-stateless-function": ["error", {"ignorePureComponents": true}], "react/jsx-tag-spacing": "off", "react/forbid-prop-types": "off", "react/no-array-index-key": "off", "react/static-property-placement": ["off"], "react/state-in-constructor": ["off"], "react/destructuring-assignment": ["off"], "jsx-a11y/click-events-have-key-events": ["off"], "jsx-a11y/no-static-element-interactions": "off", "no-alert": "off", "no-bitwise": "off" }, "globals": { "jQuery": false, "$": false }, "settings": { "react": { "version": "16.0" } } }