We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1554e4e commit d17a4faCopy full SHA for d17a4fa
.eslintrc
@@ -39,7 +39,13 @@
39
"@typescript-eslint/no-namespace": 0,
40
"@typescript-eslint/no-explicit-any": 0,
41
"@typescript-eslint/explicit-module-boundary-types": 0,
42
- "@typescript-eslint/no-unused-vars": "warn",
+ "@typescript-eslint/no-unused-vars": [
43
+ "warn",
44
+ {
45
+ "varsIgnorePattern": "^_",
46
+ "argsIgnorePattern": "^_"
47
+ }
48
+ ],
49
"@typescript-eslint/no-inferrable-types": 0,
50
"@typescript-eslint/no-non-null-assertion": 0,
51
"@typescript-eslint/no-var-requires": 0,
@@ -75,6 +81,12 @@
75
81
"selector": "typeProperty",
76
82
"format": null
77
83
}
84
85
+ "@typescript-eslint/ban-ts-comment": [
86
+ "error",
87
88
+ "ts-ignore": "allow-with-description"
89
78
90
]
79
91
80
92
0 commit comments