{ "extends": "eslint:recommended", "env": { "browser": true, "es6": true, "mocha": true, "node": true }, "parserOptions": { "ecmaVersion": 2017, "sourceType": "module" }, "rules": { "indent": [ "error", "tab", {"ignoreComments": true, "SwitchCase": 1} ], "linebreak-style": [ "error", "unix" ], "no-fallthrough": [ "error", {"commentPattern": "[Ff]alls?[-\\s]?through"} ], "no-case-declarations": 0, "no-cond-assign": 0, "no-console": 0, "no-empty": 0, "quotes": [ "error", "double", {"avoidEscape": true} ], "semi": [ "error", "always" ], "spaced-comment": [ "error", "always" ], "yoda": [ "error", "always", {"onlyEquality": true} ] }, "overrides": [{ "files": ["lib/postproc/postprocessor.js"], "rules": { "no-unused-vars": ["error", {"varsIgnorePattern": "WW1"}], "spaced-comment": 0, "semi": 0 } },{ "files": ["lib/system/shell-cache.js"], "rules": { "quotes": [ "error", "double", {"avoidEscape": true, "allowTemplateLiterals": true} ] } },{ "files": ["lib/**/*.js"], "rules": {"indent": 0} }] }