@@ -21,32 +21,55 @@ export const settings: Linter.Config = {
21
21
"plugin:functional/off" ,
22
22
] ,
23
23
rules : {
24
+ "@typescript-eslint/consistent-generic-constructors" : "off" ,
24
25
"@typescript-eslint/consistent-type-definitions" : "off" ,
25
26
"@typescript-eslint/explicit-member-accessibility" : "off" ,
26
27
"@typescript-eslint/no-empty-function" : "off" ,
27
28
"@typescript-eslint/no-explicit-any" : "off" ,
28
29
"@typescript-eslint/no-unused-expressions" : "off" ,
29
30
"@typescript-eslint/no-unused-vars" : "off" ,
31
+ "@typescript-eslint/prefer-function-type" : "off" ,
32
+ "dot-notation" : "off" ,
33
+ "import/extensions" : "off" ,
34
+ "import/newline-after-import" : "off" ,
30
35
"import/no-unresolved" : "off" ,
31
36
"init-declarations" : "off" ,
32
37
"jsdoc/require-jsdoc" : "off" ,
33
38
"n/handle-callback-err" : "off" ,
39
+ "no-alert" : "off" ,
40
+ "no-console" : "off" ,
41
+ "no-empty-function" : "off" ,
42
+ "no-empty" : "off" ,
43
+ "no-invalid-this" : "off" ,
44
+ "no-labels" : "off" ,
45
+ "no-lone-blocks" : "off" ,
46
+ "no-restricted-syntax" : "off" ,
47
+ "no-throw-literal" : "off" ,
48
+ "no-undef" : "off" ,
49
+ "no-unused-expressions" : "off" ,
50
+ "no-unused-labels" : "off" ,
51
+ "no-unused-vars" : "off" ,
52
+ "no-useless-return" : "off" ,
53
+ "node/prefer-global/process" : "off" ,
34
54
"prefer-const" : "off" ,
35
55
"prettier/prettier" : "off" ,
36
56
"sonarjs/no-extra-arguments" : "off" ,
37
57
"sonarjs/no-unused-collection" : "off" ,
58
+ "style/comma-dangle" : "off" ,
59
+ "style/eol-last" : "off" ,
60
+ "ts/consistent-type-imports" : "off" ,
61
+ "ts/no-namespace" : "off" ,
62
+ "ts/no-redeclare" : "off" ,
63
+ "ts/no-require-imports" : "off" ,
64
+ "ts/no-unused-vars" : "off" ,
65
+ "ts/no-use-before-define" : "off" ,
66
+ "ts/no-var-requires" : "off" ,
67
+ "unicode-bom" : "off" ,
38
68
"unicorn/prefer-optional-catch-binding" : "off" ,
39
69
"unicorn/prefer-top-level-await" : "off" ,
40
70
"unicorn/switch-case-braces" : "off" ,
41
- "no-console" : "off" ,
42
- "no-empty" : "off" ,
43
- "no-invalid-this" : "off" ,
44
- "no-undef" : "off" ,
45
- "no-useless-return" : "off" ,
46
- "dot-notation" : "off" ,
47
- "no-empty-function" : "off" ,
48
- "no-throw-literal" : "off" ,
49
- "no-unused-vars" : "off" ,
71
+ "unused-imports/no-unused-imports" : "off" ,
72
+ "unused-imports/no-unused-vars" : "off" ,
50
73
} ,
51
74
} ,
52
75
] ,
0 commit comments