|
1 | 1 | { |
2 | 2 | "extends": "zardoy", |
3 | 3 | "rules": { |
4 | | - "curly": "off" |
5 | | - } |
| 4 | + "curly": "off", |
| 5 | + "import/no-deprecated": "off", |
| 6 | + // investigate why it is soooo slow... |
| 7 | + "import/no-named-as-default": "off", |
| 8 | + "import/no-named-as-default-member": "off", |
| 9 | + "default-case": "off", |
| 10 | + "sonarjs/no-duplicate-string": "off", |
| 11 | + "@typescript-eslint/naming-convention": "off", |
| 12 | + "no-empty-function": "off", |
| 13 | + "no-useless-return": "off", |
| 14 | + "no-template-curly-in-string": "off" |
| 15 | + }, |
| 16 | + "overrides": [ |
| 17 | + { |
| 18 | + "files": "typescript/**", |
| 19 | + "parserOptions": { |
| 20 | + "project": "typescript/tsconfig.json" |
| 21 | + }, |
| 22 | + "rules": { |
| 23 | + "@typescript-eslint/padding-line-between-statements": "off", |
| 24 | + "arrow-body-style": "off", |
| 25 | + "import/no-extraneous-dependencies": "off", |
| 26 | + "@typescript-eslint/no-loop-func": "off", |
| 27 | + // always used intentionally as workaround for possibly undefined types (to not declare super complex types - cases) |
| 28 | + "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off", |
| 29 | + // todo configure instead |
| 30 | + "complexity": "off", |
| 31 | + "max-params": "off", |
| 32 | + "max-depth": "off", |
| 33 | + "@typescript-eslint/dot-notation": "off", |
| 34 | + "no-bitwise": "off", |
| 35 | + "@typescript-eslint/no-explicit-any": "off", |
| 36 | + // todo just not sure |
| 37 | + "@typescript-eslint/prefer-regexp-exec": "off", |
| 38 | + "unicorn/consistent-destructuring": "off", |
| 39 | + "no-negated-condition": "off", |
| 40 | + "@typescript-eslint/prefer-nullish-coalescing": "off", |
| 41 | + "unicorn/prefer-set-has": "off" |
| 42 | + } |
| 43 | + } |
| 44 | + ] |
6 | 45 | } |
0 commit comments