|
1 | 1 | {
|
2 | 2 | "extends": ["./.eslintrc.base.js"],
|
3 | 3 | "rules": {
|
4 |
| - |
| 4 | + "arrow-body-style": "off", |
| 5 | + "no-console": "off", |
| 6 | + "capitalized-comments": "off", |
| 7 | + "import/no-unassigned-import": "off", |
| 8 | + "import/no-internal-modules": "off", |
| 9 | + "no-useless-constructor": "off", |
| 10 | + "no-empty-function": "off", |
| 11 | + "no-null/no-null": "off", |
| 12 | + "no-shadow": "off", |
| 13 | + "jsdoc/check-indentation": "off", |
| 14 | + "prefer-arrow/prefer-arrow-functions": "off", |
| 15 | + "jsdoc/newline-after-description": "off", |
| 16 | + "spaced-comment": "off", |
| 17 | + "default-case": "off", |
| 18 | + |
| 19 | + "id-blacklist": "off", |
| 20 | + "max-classes-per-file": "off", |
| 21 | + "max-lines": "off", |
| 22 | + "no-template-curly-in-string": "off", |
| 23 | + |
| 24 | + "@typescript-eslint/object-curly-spacing": ["error", "always"], |
| 25 | + "@typescript-eslint/consistent-indexed-object-style": "off", |
| 26 | + "@typescript-eslint/consistent-type-imports": "off", |
| 27 | + "@typescript-eslint/method-signature-style": "off", |
| 28 | + "@typescript-eslint/no-magic-numbers": "off", |
| 29 | + "@typescript-eslint/prefer-optional-chain": "off", |
| 30 | + "@typescript-eslint/space-before-function-paren": "off", |
| 31 | + "@typescript-eslint/explicit-function-return-type": "off", |
| 32 | + "@typescript-eslint/prefer-readonly-parameter-types": "off", |
| 33 | + "@typescript-eslint/lines-between-class-members": "off", |
| 34 | + "@typescript-eslint/no-extra-parens": "off", |
| 35 | + "@typescript-eslint/ban-types": "off", |
| 36 | + "@typescript-eslint/ban-tslint-comment": "off", |
| 37 | + "@typescript-eslint/sort-type-union-intersection-members": "off", |
| 38 | + "@typescript-eslint/strict-boolean-expressions": "off", |
| 39 | + "@typescript-eslint/no-empty-interface": "off", |
| 40 | + "@typescript-eslint/no-type-alias": "off", |
| 41 | + "@typescript-eslint/no-explicit-any": "off", |
| 42 | + "@typescript-eslint/init-declarations": "off", |
| 43 | + "@typescript-eslint/prefer-enum-initializers": "off", |
| 44 | + "@typescript-eslint/no-confusing-void-expression": "off", |
| 45 | + "@typescript-eslint/prefer-nullish-coalescing": "off", |
| 46 | + "@typescript-eslint/restrict-template-expressions": "off", |
| 47 | + "@typescript-eslint/no-implicit-any-catch": "off", |
| 48 | + "@typescript-eslint/explicit-module-boundary-types": "off", |
| 49 | + "@typescript-eslint/array-type": "off", |
| 50 | + "@typescript-eslint/no-namespace": "off", |
| 51 | + "@typescript-eslint/no-loop-func": "off", |
| 52 | + |
| 53 | + "@typescript-eslint/no-extraneous-class": "off", |
| 54 | + "@typescript-eslint/no-unsafe-argument": "off", |
| 55 | + "@typescript-eslint/no-unsafe-assignment": "off", |
| 56 | + "@typescript-eslint/no-unsafe-member-access": "off", |
| 57 | + "@typescript-eslint/tslint/config": "off" |
5 | 58 | }
|
6 | 59 | }
|
0 commit comments