eslint-config-sukka 3.0.3 → 3.0.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/package.json +1 -1
- package/typescript.js +4 -3
package/package.json
CHANGED
package/typescript.js
CHANGED
|
@@ -445,9 +445,6 @@ module.exports = {
|
|
|
445
445
|
{ checksVoidReturn: false }
|
|
446
446
|
],
|
|
447
447
|
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
|
|
448
|
-
'@typescript-eslint/no-unsafe-call': 'off',
|
|
449
|
-
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
450
|
-
'@typescript-eslint/no-unsafe-return': 'off',
|
|
451
448
|
'@typescript-eslint/restrict-template-expressions': [
|
|
452
449
|
'error',
|
|
453
450
|
{ allowNumber: true, allowAny: true, allowBoolean: true }
|
|
@@ -586,10 +583,14 @@ module.exports = {
|
|
|
586
583
|
}
|
|
587
584
|
],
|
|
588
585
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
586
|
+
'@typescript-eslint/no-unsafe-argument': 'off',
|
|
589
587
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
590
588
|
'@typescript-eslint/no-loop-func': 'error',
|
|
591
589
|
'@typescript-eslint/no-redundant-type-constituents': 'off',
|
|
592
590
|
'@typescript-eslint/no-floating-promises': 'off',
|
|
591
|
+
'@typescript-eslint/no-unsafe-call': 'off',
|
|
592
|
+
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
593
|
+
'@typescript-eslint/no-unsafe-return': 'error',
|
|
593
594
|
'@fluffyfox/array/no-unneeded-flat-map': 'error',
|
|
594
595
|
'@fluffyfox/array/prefer-from': 'error',
|
|
595
596
|
'@fluffyfox/browser/no-set-html': 'off',
|