@naturalcycles/dev-lib 20.35.0 → 20.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cfg/oxlint.config.json +4 -1
- package/package.json +1 -1
package/cfg/oxlint.config.json
CHANGED
|
@@ -127,7 +127,10 @@
|
|
|
127
127
|
"typescript/ban-ts-comment": [
|
|
128
128
|
2,
|
|
129
129
|
{
|
|
130
|
+
"minimumDescriptionLength": 2,
|
|
130
131
|
"ts-expect-error": "allow-with-description",
|
|
132
|
+
"ts-nocheck": "allow-with-description",
|
|
133
|
+
"ts-check": false,
|
|
131
134
|
"ts-ignore": true
|
|
132
135
|
}
|
|
133
136
|
],
|
|
@@ -182,7 +185,7 @@
|
|
|
182
185
|
"ignoreStatic": true
|
|
183
186
|
}
|
|
184
187
|
],
|
|
185
|
-
"typescript/switch-exhaustiveness-check":
|
|
188
|
+
"typescript/switch-exhaustiveness-check": 0, // not good
|
|
186
189
|
"typescript/require-array-sort-compare": 0, // not good
|
|
187
190
|
"typescript/restrict-template-expressions": 0, // not good
|
|
188
191
|
"typescript/no-redundant-type-constituents": 0, // `'a' | string` is still useful for DX
|