{ "env": { "node": true, "es6": true }, "extends": [ "eslint:recommended" ], "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "rules": { "dot-notation": "off", "eqeqeq": ["error", "smart"], "indent": ["off", 2], "keyword-spacing": "error", "linebreak-style": ["error", "unix"], "no-caller": "error", "no-catch-shadow": "error", "no-console": "off", "no-div-regex": "error", "no-extend-native": "error", "no-extra-bind": "error", "no-floating-decimal": "error", "no-global-assign": "error", "no-implied-eval": "error", "no-invalid-this": "off", "no-iterator": "error", "no-labels": "error", "no-label-var": "error", "no-lone-blocks": "error", "no-loop-func": "error", "no-multi-str": "error", "no-new": "error", "no-new-func": "error", "no-new-wrappers": "error", "no-octal": "error", "no-octal-escape": "error", "no-process-env": "error", "no-proto": "error", "no-return-assign": "off", "no-script-url": "error", "no-self-compare": "error", "no-sequences": "error", "no-shadow": "off", "no-shadow-restricted-names": "error", "no-throw-literal": "error", "no-undef": "error", "no-unneeded-ternary": "error", "no-unused-expressions": "error", "no-unexpected-multiline": "error", "no-unused-vars": "warn", "no-unreachable": "warn", "no-useless-escape": "off", "no-void": "error", "no-warning-comments": "warn", "no-with": "error", "no-use-before-define": ["off", "nofunc"], "radix": ["error", "always"], "semi": ["error", "always"], "semi-spacing": "error", "space-unary-ops": "error", "wrap-regex": "off" } }