{ "parser": "babel-eslint", "extends": [ "airbnb", "plugin:jest/recommended" ], "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "arrowFunctions": true, "blockBindings": true, "classes": true, "defaultParams": true, "destructuring": true, "forOf": true, "generators": true, "restParams": true, "spread": true, "jsx": false } }, "env": { "es6": true, "node": true, "jest/globals": true }, "plugins": [ "async", "jest", "jest-async" ], "rules": { "consistent-return":"off", "async/missing-await-in-async-fn": 1, "comma-dangle": ["error", { "arrays": "always-multiline", "exports": "always-multiline", "functions": "never", "imports": "always-multiline", "objects": "always-multiline" }], "linebreak-style": [ "error", "unix" ], "no-unused-vars": "warn", "indent": [ "error", 2, { "SwitchCase": 1 } ], "no-underscore-dangle": [ 0 ], "max-len": [ "error", 110 ], "jest/no-disabled-tests": "warn", "jest/no-focused-tests": "error", "jest/no-identical-title": "error", "jest/valid-expect": "error", "no-use-before-define":"warn", "no-prototype-builtins":"warn", "no-new":"off" } }