{ "extends": ["standard"], "env": { "es6": true, "browser": true, "node": true }, "parser": "@typescript-eslint/parser", "plugins": [ "standard", "@typescript-eslint", "promise" ], "rules": { "dot-notation": "off", "no-var": 2, "prefer-const": 2, "no-labels": "off", "indent": ["error", 4], "no-useless-constructor": "off", "@typescript-eslint/indent": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-object-literal-type-assertion": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/interface-name-prefix": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "debug" }], "max-len": ["warn", { "code": 120, "ignoreRegExpLiterals": true, "ignoreTemplateLiterals": true, "ignoreUrls": true }], "no-unused-vars": "off", "no-dupe-class-members": "off", "import/export": "off" } }