{ "env": { "browser": true, "es6": true }, "extends": ["google"], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["@typescript-eslint"], "rules": { "indent": ["error", 2, { "SwitchCase": 1 }], "max-len": ["error", 120], "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "warn", { "varsIgnorePattern": "^(_|ui$|grok$|DG$)", "argsIgnorePattern": "^_" } ], "require-jsdoc": "off", "valid-jsdoc": "off", "spaced-comment": "off", "linebreak-style": "off", "curly": ["error", "multi-or-nest", "consistent"], "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "block-spacing": [2, "always"], "comma-dangle": [ "error", { "arrays": "only-multiline", "functions": "never", "objects": "only-multiline", "imports": "only-multiline" } ], "guard-for-in": "off" } }