@@ -425,6 +425,7 @@ const tsConfigurations = [
425
425
'@typescript-eslint/no-non-null-assertion' : 'off' ,
426
426
'@typescript-eslint/no-non-null-asserted-optional-chain' : 'off' ,
427
427
'@typescript-eslint/no-confusing-void-expression' : 'off' ,
428
+ '@typescript-eslint/no-misused-spread' : 'off' ,
428
429
'@typescript-eslint/strict-boolean-expressions' : 'off' ,
429
430
'@typescript-eslint/unbound-method' : 'off' ,
430
431
'import/no-extraneous-dependencies' : 'off' ,
@@ -439,10 +440,14 @@ const tsConfigurations = [
439
440
'sonarjs/slow-regexp' : 'off' ,
440
441
'sonarjs/pseudo-random' : 'off' ,
441
442
'sonarjs/unused-named-groups' : 'off' ,
443
+ 'sonarjs/no-nested-functions' : 'off' ,
444
+ 'sonarjs/no-alphabetical-sort' : 'off' ,
445
+ 'sonarjs/function-return-type' : 'off' ,
442
446
'unicorn/no-useless-undefined' : 'off' ,
443
447
'unicorn/no-await-expression-member' : 'off' ,
444
448
'unicorn/consistent-function-scoping' : 'off' ,
445
449
'unicorn/no-array-reduce' : 'off' ,
450
+ 'unicorn/prefer-spread' : 'off' ,
446
451
'unicorn/error-message' : 'off' ,
447
452
'unicorn/prevent-abbreviations' : 'off' ,
448
453
'unicorn/no-array-for-each' : 'off' ,
0 commit comments