{ "parser": "babel-eslint", "extends": "airbnb", "env": { "browser": true, "node": true }, "rules": { "func-names": "off", "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", "jsx-a11y/no-static-element-interactions": "off", "no-console": "off" }, "globals": { "jQuery": false, "$": false } }