{ "extends": [ "eslint-config-airbnb-base", "plugin:flowtype/recommended", "plugin:jest/recommended" ], "plugins": [ "import", "flowtype", "jest" ], "env": { "jest/globals": true, "jest": true }, "rules": { "indent": [ "error", "tab" ], "no-tabs": "off", "no-underscore-dangle": [ "error", { "allow": [ "_id" ] } ], "flowtype/require-valid-file-annotation": [ 2, "always", { "annotationStyle": "line" } ], "import/no-extraneous-dependencies": ["error", {"packageDir": "./"}] }, "parserOptions": { "ecmaFeatures": { "modules": true } } }