{ "parser": "babel-eslint", "extends": [ "airbnb", "plugin:jest/recommended" ], "rules": { "no-console": "off", "linebreak-style": "off", "no-underscore-dangle": "off", "react/jsx-wrap-multilines": "off", "react/prop-types": "off", "react/jsx-filename-extension": [ 1, { "extensions": [ ".js", ".jsx" ] } ], "import/no-extraneous-dependencies": [ "error", { "devDependencies": true } ] }, "plugins": [ "jest" ], "env": { "jest/globals": true }, "globals": { "window": false, "document": false } }