@naturalcycles/dev-lib 13.32.1 → 13.32.3
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 -0
- package/package.json +1 -1
package/cfg/eslint-rules.js
CHANGED
|
@@ -432,6 +432,7 @@ module.exports = {
|
|
|
432
432
|
2,
|
|
433
433
|
{
|
|
434
434
|
accessibility: 'no-public',
|
|
435
|
+
overrides: { parameterProperties: 'off' },
|
|
435
436
|
},
|
|
436
437
|
],
|
|
437
438
|
'@typescript-eslint/no-mixed-enums': 2,
|
|
@@ -443,5 +444,6 @@ module.exports = {
|
|
|
443
444
|
'@typescript-eslint/prefer-nullish-coalescing': 0, // we prefer `||` actually
|
|
444
445
|
'@typescript-eslint/dot-notation': 0, // not always desireable
|
|
445
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
|
|
446
448
|
},
|
|
447
449
|
}
|