123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "env": {
- "browser": true,
- "es6": true
- },
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "project": "tsconfig.json",
- "sourceType": "module"
- },
- "plugins": [
- "@typescript-eslint"
- ],
- "rules": {
- "@typescript-eslint/adjacent-overload-signatures": "error",
- "@typescript-eslint/array-type": "error",
- "@typescript-eslint/await-thenable": "error",
- "@typescript-eslint/ban-types": "error",
- "@typescript-eslint/naming-convention": "error",
- "@typescript-eslint/consistent-type-assertions": "error",
- "@typescript-eslint/indent": [
- "error",
- 2,
- {
- "ArrayExpression": "first",
- "ObjectExpression": "first",
- "FunctionDeclaration": {
- "parameters": "first"
- },
- "FunctionExpression": {
- "parameters": "first"
- }
- }
- ],
- "@typescript-eslint/interface-name-prefix": "off",
- "@typescript-eslint/member-ordering": "off",
- "@typescript-eslint/no-empty-function": "error",
- "@typescript-eslint/no-empty-interface": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-inferrable-types": "error",
- "@typescript-eslint/no-misused-new": "error",
- "@typescript-eslint/no-namespace": "off",
- "@typescript-eslint/no-non-null-assertion": "error",
- "@typescript-eslint/no-parameter-properties": "off",
- "@typescript-eslint/no-unnecessary-type-assertion": "off",
- "@typescript-eslint/no-use-before-define": "off",
- "@typescript-eslint/no-var-requires": "error",
- "@typescript-eslint/prefer-for-of": "off",
- "@typescript-eslint/prefer-function-type": "error",
- "@typescript-eslint/prefer-namespace-keyword": "error",
- "@typescript-eslint/quotes": [
- "error",
- "single"
- ],
- "@typescript-eslint/triple-slash-reference": "error",
- "@typescript-eslint/unified-signatures": "off",
- "arrow-parens": [
- "off",
- "as-needed"
- ],
- "camelcase": "error",
- "comma-dangle": "off",
- "complexity": "off",
- "constructor-super": "error",
- "curly": [
- "error",
- "multi-line"
- ],
- "dot-notation": "off",
- "eqeqeq": [
- "error",
- "smart"
- ],
- "guard-for-in": "off",
- "id-blacklist": [
- "error",
- "any",
- "Number",
- "number",
- "String",
- "string",
- "Boolean",
- "boolean",
- "Undefined",
- "undefined"
- ],
- "id-match": "error",
- "import/no-unassigned-import": "off",
- "linebreak-style": "off",
- "max-classes-per-file": "off",
- "max-len": "off",
- "new-parens": "error",
- "no-bitwise": "off",
- "no-caller": "error",
- "no-cond-assign": "error",
- "no-console": "off",
- "no-constant-condition": "error",
- "no-control-regex": "error",
- "no-debugger": "error",
- "no-duplicate-case": "error",
- "no-duplicate-imports": "error",
- "no-empty": "error",
- "no-eval": "error",
- "no-fallthrough": "off",
- "no-invalid-regexp": "error",
- "no-invalid-this": "off",
- "no-irregular-whitespace": "error",
- "no-multiple-empty-lines": "off",
- "no-new-wrappers": "error",
- "no-redeclare": "error",
- "no-regex-spaces": "error",
- "no-return-await": "error",
- "no-sequences": "error",
- "no-shadow": [
- "warn",
- {
- "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",
- {
- "allowShortCircuit": true
- }
- ],
- "no-unused-labels": "error",
- "no-var": "error",
- "object-shorthand": "error",
- "one-var": [
- "off",
- "never"
- ],
- "prefer-const": "error",
- "quote-props": "off",
- "radix": "error",
- "space-in-parens": [
- "error",
- "never"
- ],
- "spaced-comment": "error",
- "use-isnan": "error",
- "valid-typeof": "off"
- }
- }
|