{ "env": { "es6": true }, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "tsconfig.json", "sourceType": "module" }, "plugins": [ "eslint-plugin-chai", "eslint-plugin-chai-expect", "eslint-plugin-chai-expect-keywords", "eslint-plugin-import", "eslint-plugin-mocha", "eslint-plugin-no-null", "eslint-plugin-sonarjs", "@typescript-eslint", "@typescript-eslint/tslint" ], "rules": { "@typescript-eslint/adjacent-overload-signatures": "error", "@typescript-eslint/array-type": [ "error", { "default": "generic" } ], "@typescript-eslint/await-thenable": "error", "@typescript-eslint/ban-types": [ "error", { "types": { "null": "Use 'undefined' instead of 'null'" } } ], "@typescript-eslint/class-name-casing": "error", "@typescript-eslint/consistent-type-assertions": "error", "@typescript-eslint/consistent-type-definitions": "error", "@typescript-eslint/explicit-member-accessibility": [ "error", { "accessibility": "explicit", "overrides": { "constructors": "no-public" } } ], "@typescript-eslint/indent": [ "error", 2, { "ObjectExpression": "first", "FunctionDeclaration": { "parameters": "first" }, "FunctionExpression": { "parameters": "first" }, "SwitchCase": 1 } ], "@typescript-eslint/interface-name-prefix": "error", "@typescript-eslint/member-delimiter-style": [ "error", { "multiline": { "delimiter": "semi", "requireLast": true }, "singleline": { "delimiter": "semi", "requireLast": false } } ], "@typescript-eslint/member-ordering": [ "error", { "default": [ "public-static-method", "public-static-field", "public-instance-field", "protected-instance-field", "public-constructor", "public-instance-method", "protected-instance-method" ] } ], "@typescript-eslint/no-empty-function": "error", "@typescript-eslint/no-empty-interface": "error", "@typescript-eslint/no-explicit-any": "error", "@typescript-eslint/no-floating-promises": "error", "@typescript-eslint/no-for-in-array": "error", "@typescript-eslint/no-inferrable-types": "error", "@typescript-eslint/no-misused-new": "error", "@typescript-eslint/no-namespace": "error", "@typescript-eslint/no-non-null-assertion": "error", "no-param-reassign": "error", "@typescript-eslint/no-parameter-properties": "error", "@typescript-eslint/no-this-alias": "error", "@typescript-eslint/no-unnecessary-type-arguments": "error", "@typescript-eslint/no-use-before-declare": "off", "@typescript-eslint/no-var-requires": "error", "@typescript-eslint/prefer-for-of": "error", "@typescript-eslint/prefer-function-type": "error", "@typescript-eslint/prefer-namespace-keyword": "error", "@typescript-eslint/quotes": [ "error", "single", { "avoidEscape": true } ], "@typescript-eslint/restrict-plus-operands": "error", "@typescript-eslint/semi": [ "error", "always" ], "space-in-parens": [ "error", "never" ], "@typescript-eslint/strict-boolean-expressions": "error", "@typescript-eslint/triple-slash-reference": "error", "@typescript-eslint/type-annotation-spacing": "error", "@typescript-eslint/unbound-method": "error", "@typescript-eslint/unified-signatures": "error", "arrow-body-style": "error", "arrow-parens": [ "error", "always" ], "camelcase": "error", "complexity": [ "error", { "max": 12 } ], "constructor-super": "error", "curly": "error", "default-case": "error", "dot-notation": "error", "eol-last": "error", "eqeqeq": [ "error", "always" ], "guard-for-in": "error", "id-blacklist": [ "error", "any", "Number", "String", "Boolean", "Undefined" ], "id-match": "error", "import/no-default-export": "error", "import/no-deprecated": "error", "import/no-extraneous-dependencies": "off", "import/no-internal-modules": "off", "import/order": [ "error", { "groups": [ [ "builtin", "external" ], [ "index", "parent", "sibling", "unknown" ] ] } ], "max-classes-per-file": [ "off", 1 ], "max-len": [ "error", { "code": 180 } ], "max-lines": [ "error", 500 ], "new-parens": "error", "no-bitwise": "off", "no-caller": "error", "no-cond-assign": "error", "no-console": "error", "no-debugger": "error", "no-duplicate-case": "error", "no-duplicate-imports": "error", "no-empty": "error", "no-eval": "error", "no-extra-bind": "error", "no-fallthrough": "off", "no-invalid-this": "error", "no-irregular-whitespace": "error", "no-magic-numbers": [ "error", { "ignore": [ 0, 1, 10 ] } ], "no-multiple-empty-lines": "error", "no-new-func": "error", "no-new-wrappers": "error", "no-null/no-null": "error", "no-plusplus": [ "error", { "allowForLoopAfterthoughts": true } ], "no-redeclare": "error", "no-restricted-syntax": [ "error", "ForInStatement" ], "no-return-await": "error", "no-sequences": "error", "no-shadow": [ "error", { "hoist": "all" } ], "no-sparse-arrays": "error", "no-template-curly-in-string": "error", "no-throw-literal": "error", "no-trailing-spaces": "error", "no-undef-init": "error", "no-underscore-dangle": "error", "no-unsafe-finally": "error", "no-unused-expressions": "error", "no-unused-labels": "error", "no-useless-constructor": "error", "no-var": "error", "no-void": "error", "max-params": [ "error", 4 ], "object-shorthand": "error", "one-var": [ "error", "never" ], "prefer-const": "error", "prefer-object-spread": "error", "@typescript-eslint/prefer-readonly": "error", "quote-props": [ "error", "consistent-as-needed" ], "radix": "error", "space-before-function-paren": [ "error", { "anonymous": "never", "asyncArrow": "always", "named": "never" } ], "spaced-comment": "error", "use-isnan": "error", "valid-typeof": "off", "sonarjs/max-switch-cases": "error", "sonarjs/cognitive-complexity": "error", "sonarjs/no-all-duplicated-branches": "error", "sonarjs/no-collapsible-if": "error", "sonarjs/no-collection-size-mischeck": "error", "sonarjs/no-duplicate-string": "error", "sonarjs/no-duplicated-branches": "error", "sonarjs/no-element-overwrite": "error", "sonarjs/no-identical-conditions": "error", "sonarjs/no-identical-expressions": "error", "sonarjs/no-identical-functions": "error", "sonarjs/no-inverted-boolean-check": "error", "sonarjs/no-redundant-boolean": "error", "sonarjs/no-redundant-jump": "error", "sonarjs/no-same-line-conditional": "error", "sonarjs/no-useless-catch": "error", "sonarjs/prefer-immediate-return": "error", "@typescript-eslint/tslint/config": [ "error", { "rules": { "ban": [ true, { "message": "use lodash isString", "name": [ "util", "isString" ] }, { "message": "use lodash isNil", "name": [ "util", "isNullOrUndefined" ] } ], "import-spacing": true, "jsdoc-format": [ true, "check-multiline-start" ], "no-dynamic-delete": true, "no-inferred-empty-object-type": true, "no-reference-import": true, "object-literal-sort-keys": true, "one-line": [ true, "check-catch", "check-else", "check-finally", "check-open-brace", "check-whitespace" ], "prefer-switch": true, "strict-type-predicates": true, "trailing-comma": [ true, { "esSpecCompliant": true, "multiline": { "arrays": "always", "functions": "never", "object": "always" }, "singleline": "never" } ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type", "check-typecast", "check-type-operator", "check-rest-spread" ] } } ] } }