{ "env": { "node": true, "es6": true }, "parserOptions": { "sourceType": "module" }, "rules": { "arrow-parens": [ 2, "as-needed" ], "brace-style": 2, "camelcase": 0, "comma-dangle": 0, "comma-spacing": [ 2, { "after": true } ], "curly": [ 2, "all" ], "indent": [ 2, 2, { "SwitchCase": 1 } ], "key-spacing": [ 2, { "beforeColon": false, "afterColon": true } ], "keyword-spacing": [ 2, { "overrides": { "else": { "before": true } } } ], "linebreak-style": [ 2, "unix" ], "max-len": 0, "no-else-return": 0, "no-mixed-spaces-and-tabs": 2, "no-multi-spaces": 2, "no-multiple-empty-lines": 2, "no-template-curly-in-string": 2, "no-trailing-spaces": 2, "no-undef": 2, "no-unused-vars": 2, "no-var": 1, "no-with": 2, "one-var": 0, "padded-blocks": [ 2, "never" ], "prefer-arrow-callback": 2, "prefer-destructuring": [ 2, { "array": false, "object": true } ], "prefer-template": 2, "quote-props": [ 2, "as-needed" ], "quotes": [ 2, "single" ], "semi": [ 2, "always" ], "space-before-blocks": [ 2, "always" ], "space-in-parens": [ 2, "never" ], "space-infix-ops": 2, "space-unary-ops": [ 2, { "nonwords": false } ], "spaced-comment": [ 2, "always" ] } }