{ "root": true, "rules": { "indent": [ 1, "tab", { "SwitchCase": 1 } ], "semi": [ 1, "always" ], "keyword-spacing": [ 1, { "before": true, "after": true } ], "space-before-blocks": [ 1, "always" ], "space-in-parens": [ 1, "always" ], "object-curly-spacing": [ 1, "always" ], "array-bracket-spacing": [ 1, "always" ], "computed-property-spacing": [ 1, "always" ], "space-before-function-paren": [ 1, "always" ], "no-mixed-spaces-and-tabs": [ 1, "smart-tabs" ], "no-cond-assign": 0, "no-unused-vars": 2, "object-shorthand": [ 1, "always" ], "no-const-assign": 2, "no-class-assign": 2, "no-this-before-super": 2, "no-var": 2, "no-unreachable": 2, "valid-typeof": 2, "quote-props": [ 1, "as-needed" ], "one-var": [ 1, "never" ], "prefer-arrow-callback": 2, "prefer-const": [ 1, { "destructuring": "all" } ], "arrow-spacing": 2, "no-inner-declarations": 0 }, "env": { "es6": true, "browser": true, "node": true, "mocha": true }, "parserOptions": { "ecmaVersion": 6, "sourceType": "module" } }