@naturalcycles/dev-lib 13.32.2 → 13.32.4
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/eslint-rules.js +2 -1
- package/package.json +1 -1
package/cfg/eslint-rules.js
CHANGED
|
@@ -257,7 +257,7 @@ module.exports = {
|
|
|
257
257
|
'no-sparse-arrays': 2,
|
|
258
258
|
'no-this-before-super': 2,
|
|
259
259
|
'no-throw-literal': 2,
|
|
260
|
-
'no-undef':
|
|
260
|
+
'no-undef': 0, // covered by TS, conflicts with typescript-eslint
|
|
261
261
|
'no-undef-init': 2,
|
|
262
262
|
'no-underscore-dangle': 0,
|
|
263
263
|
'no-unexpected-multiline': 0, // prettier
|
|
@@ -444,5 +444,6 @@ module.exports = {
|
|
|
444
444
|
'@typescript-eslint/prefer-nullish-coalescing': 0, // we prefer `||` actually
|
|
445
445
|
'@typescript-eslint/dot-notation': 0, // not always desireable
|
|
446
446
|
'@typescript-eslint/consistent-indexed-object-style': 0, // Record looses the name of the key
|
|
447
|
+
'@typescript-eslint/no-unsafe-enum-comparison': 0, // not practically helpful
|
|
447
448
|
},
|
|
448
449
|
}
|