@@ -184,6 +184,13 @@ const tsConfigurations = [
184
184
185
185
// We're smarter than the default (15). Right?
186
186
'sonarjs/cognitive-complexity' : [ 'error' , 24 ] ,
187
+ 'sonarjs/different-types-comparison' : 'off' , // duplicate of @typescript -eslint/no-unnecessary-condition
188
+ 'sonarjs/duplicates-in-character-class' : 'off' , // appears to be case-insensitive (as of 3.0.1)
189
+ 'sonarjs/no-unused-vars' : 'off' ,
190
+ 'sonarjs/no-nested-conditional' : 'off' ,
191
+ 'sonarjs/todo-tag' : 'off' , // duplicate of no-warning-comments
192
+ 'sonarjs/generator-without-yield' : 'off' , // duplicate of require-yield
193
+
187
194
'no-only-tests/no-only-tests' : 'error' ,
188
195
189
196
// eslint:all rules to modify
@@ -421,9 +428,15 @@ const tsConfigurations = [
421
428
'@typescript-eslint/unbound-method' : 'off' ,
422
429
'import/no-extraneous-dependencies' : 'off' ,
423
430
'n/no-process-env' : 'off' ,
431
+ 'sonarjs/cognitive-complexity' : 'off' ,
432
+ 'sonarjs/no-clear-text-protocols' : 'off' ,
424
433
'sonarjs/no-duplicate-string' : 'off' ,
434
+ 'sonarjs/no-empty-test-file' : 'off' ,
435
+ 'sonarjs/no-exclusive-tests' : 'off' , // duplicate
425
436
'sonarjs/no-identical-functions' : 'off' ,
426
- 'sonarjs/cognitive-complexity' : 'off' ,
437
+ 'sonarjs/no-misleading-array-reverse' : 'off' ,
438
+ 'sonarjs/pseudo-random' : 'off' ,
439
+ 'sonarjs/unused-named-groups' : 'off' ,
427
440
'unicorn/no-useless-undefined' : 'off' ,
428
441
'unicorn/no-await-expression-member' : 'off' ,
429
442
'unicorn/consistent-function-scoping' : 'off' ,
0 commit comments