{ "parser": "babel-eslint", "env": { "node": true, "es6": true, "jest/globals": true }, "plugins": ["jest"], "extends": "eslint:recommended", "rules": { "indent": [ "error", 2, { "SwitchCase": 1 } ], "linebreak-style": [ 2, "unix" ], "quotes": [ 1, "double" ], "semi": [ "error", "always" ], "curly": [ 2, "multi-line" ], "keyword-spacing": [ 2, {} ], "space-before-blocks": [ 2, "always" ], "wrap-iife": 2, "space-before-function-paren": [ 2, { "anonymous": "always", "named": "never", "asyncArrow": "ignore" } ], "no-empty": [ 2, { "allowEmptyCatch": true } ], "array-bracket-spacing": [ 2, "never", {} ], "space-in-parens": [ 2, "never" ], "comma-style": [ 2, "last" ], "space-unary-ops": [ 2, { "words": false, "nonwords": false } ], "no-with": 2, "no-mixed-spaces-and-tabs": 2, "no-trailing-spaces": 2, "comma-dangle": [ 2, "always-multiline" ], "brace-style": [ 2, "1tbs", { "allowSingleLine": true } ], "eol-last": 2, "dot-notation": 2, "no-multi-str": 2, "default-case": 2, "guard-for-in": 2, "no-caller": 2, "no-console": 0, "no-else-return": 2, "no-eval": 2, "no-extend-native": 2, "no-extra-bind": 2, "no-fallthrough": 2, "no-floating-decimal": 1, "no-implicit-coercion": 2, "no-implied-eval": 2, "no-iterator": 2, "no-labels": 2, "no-loop-func": 2, "no-native-reassign": 2, "no-new-func": 2, "no-new-wrappers": 2, "no-new": 2, "no-octal-escape": 2, "no-octal": 2, "no-proto": 2, "no-redeclare": 2, "no-return-assign": 2, "no-script-url": 2, "no-self-compare": 2, "no-throw-literal": 1, "no-unused-expressions": 2, "no-useless-call": 2, "no-void": 1, "no-warning-comments": 1, "radix": 2, "no-catch-shadow": 2, "no-delete-var": 2, "no-shadow-restricted-names": 2, "no-undef": 2, "no-unused-vars": [ 2, { "args": "none" } ], "no-use-before-define": 2, "comma-spacing": [ 2, { "after": true } ], "no-array-constructor": 2, "no-continue": 2, "no-multiple-empty-lines": 2, "no-nested-ternary": 2, "no-new-object": 2, "no-spaced-func": 2 } }