{ "parser": "babel-eslint", "extends": "airbnb", "rules": { "react/jsx-filename-extension": 0, "react/no-array-index-key": 0, "no-nested-ternary": 0, "import/no-unresolved": 0, "import/extensions": 0, "jsx-a11y/label-has-associated-control": 0, "jsx-a11y/label-has-for": 0, "jsx-a11y/click-events-have-key-events": 0, "jsx-a11y/no-static-element-interactions": 0, "jsx-a11y/no-autofocus": "off", "no-underscore-dangle": 0, "no-return-assign": "off", "no-param-reassign": "off", "no-use-before-define": "off" }, "parserOptions": { "ecmaFeatures": { "jsx": true } }, "plugins": ["react"], "env": { "browser": true, "commonjs": true, "jest": true } }