{ "env": { "node": true, "browser": true, "es6": true, "commonjs": true }, "extends": "eslint:recommended", "parserOptions": { "sourceType": "module", "ecmaFeatures": { "experimentalObjectRestSpread": true } }, "rules": { "indent": ["warn", 4], "linebreak-style": ["warn", "unix"], "quotes": ["warn", "double"], "semi": ["warn", "always"], "no-console": "off", "no-eval": "error", "no-invalid-regexp": "error", "no-invalid-this": "off", "no-multiple-empty-lines": [ "warn", { "max": 2 } ], "no-unused-vars": "warn", "no-extra-bind": "warn", "no-extra-boolean-cast": "warn", "no-extra-parens": "off", "no-extra-semi": "warn", "no-func-assign": "warn", "no-floating-decimal": "warn", "no-irregular-whitespace": "warn", "no-lone-blocks": "warn", "no-undef": "off", "space-before-function-paren": "off", "no-new-object": "off", "no-array-constructor": "off" } }