Skip to content

Commit 4c7ca7d

Browse files
authored
Turn off some rules for non-prod code (#214)
1 parent 6bab4e3 commit 4c7ca7d

File tree

3 files changed

+194
-228
lines changed

3 files changed

+194
-228
lines changed

index.mjs

+5
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ const tsConfigurations = [
425425
'@typescript-eslint/no-non-null-assertion': 'off',
426426
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
427427
'@typescript-eslint/no-confusing-void-expression': 'off',
428+
'@typescript-eslint/no-misused-spread': 'off',
428429
'@typescript-eslint/strict-boolean-expressions': 'off',
429430
'@typescript-eslint/unbound-method': 'off',
430431
'import/no-extraneous-dependencies': 'off',
@@ -439,10 +440,14 @@ const tsConfigurations = [
439440
'sonarjs/slow-regexp': 'off',
440441
'sonarjs/pseudo-random': 'off',
441442
'sonarjs/unused-named-groups': 'off',
443+
'sonarjs/no-nested-functions': 'off',
444+
'sonarjs/no-alphabetical-sort': 'off',
445+
'sonarjs/function-return-type': 'off',
442446
'unicorn/no-useless-undefined': 'off',
443447
'unicorn/no-await-expression-member': 'off',
444448
'unicorn/consistent-function-scoping': 'off',
445449
'unicorn/no-array-reduce': 'off',
450+
'unicorn/prefer-spread': 'off',
446451
'unicorn/error-message': 'off',
447452
'unicorn/prevent-abbreviations': 'off',
448453
'unicorn/no-array-for-each': 'off',

0 commit comments

Comments
 (0)