{ "extends": "eslint:recommended", "ecmaFeatures": { "blockBindings": true }, "rules": { "array-bracket-spacing": [2, "never"], "arrow-parens": 2, "arrow-spacing": [2, {"before": true, "after": true}], "block-scoped-var": 2, "block-spacing": [2, "always"], "brace-style": [2, "stroustrup"], "camelcase": 2, "constructor-super": 2, "comma-spacing": [2, {"before": false, "after": true}], "comma-style": [2, "last"], "computed-property-spacing": [2, "never"], "consistent-this": [2, "self"], "curly": 2, "dot-location": [2, "property"], "eol-last": 2, "eqeqeq": 2, "key-spacing": [2, {"beforeColon": false, "afterColon": true}], "linebreak-style": [2, "unix"], "new-cap": 2, "new-parens": 2, "no-array-constructor": 2, "no-bitwise": 2, "no-const-assign": 2, "no-constant-condition": 0, "no-dupe-args": 2, "no-dupe-class-members": 2, "no-duplicate-case": 2, "no-empty-character-class": 2, "no-eval": 2, "no-floating-decimal": 2, "no-implied-eval": 2, "no-inline-comments": 0, "no-irregular-whitespace": 2, "no-mixed-spaces-and-tabs": 2, "no-multi-spaces": 2, "no-multiple-empty-lines": 0, "no-new-object": 2, "no-param-reassign": 0, "no-process-env": 2, "no-restricted-syntax": [2, "WithStatement"], "no-self-compare": 2, "no-spaced-func": 2, "no-this-before-super": 2, "no-throw-literal": 2, "no-trailing-spaces": 2, "no-underscore-dangle": 0, "no-unexpected-multiline": 2, "no-unneeded-ternary": 2, "no-useless-call": 2, "no-void": 2, "one-var": [2, "never"], "object-curly-spacing": [2, "never"], "object-shorthand": [2, "always"], "operator-assignment": [2, "always"], "operator-linebreak": [2, "after"], "padded-blocks": 0, "prefer-const": 2, "prefer-spread": 2, "quote-props": [2, "as-needed", {"keywords": true}], "quotes": 0, "radix": 2, "require-jsdoc": 2, "semi": [2, "always"], "semi-spacing": [2, {"before": false, "after": true}], "space-after-keywords": [2, "always"], "space-before-blocks": [2, "always"], "space-before-function-paren": [2, {"anonymous": "always", "named": "never"}], "space-before-keywords": [2, "always"], "space-in-parens": [2, "never"], "space-return-throw-case": 2, "space-unary-ops": [2, {"words": true, "nonwords": false}], "spaced-comment": [2, "always", {"markers": ["!"]}], "strict": [2, "global"], "vars-on-top": 0, "wrap-iife": [2, "inside"], "yoda": [2, "never"] } }