Skip to content

Commit ce98767

Browse files
authored
tweak some sonarjs plugin rules (#197)
1 parent 5eea1c5 commit ce98767

6 files changed

+166
-485
lines changed

index.mjs

+14-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,13 @@ const tsConfigurations = [
184184

185185
// We're smarter than the default (15). Right?
186186
'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+
187194
'no-only-tests/no-only-tests': 'error',
188195

189196
// eslint:all rules to modify
@@ -421,9 +428,15 @@ const tsConfigurations = [
421428
'@typescript-eslint/unbound-method': 'off',
422429
'import/no-extraneous-dependencies': 'off',
423430
'n/no-process-env': 'off',
431+
'sonarjs/cognitive-complexity': 'off',
432+
'sonarjs/no-clear-text-protocols': 'off',
424433
'sonarjs/no-duplicate-string': 'off',
434+
'sonarjs/no-empty-test-file': 'off',
435+
'sonarjs/no-exclusive-tests': 'off', // duplicate
425436
'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',
427440
'unicorn/no-useless-undefined': 'off',
428441
'unicorn/no-await-expression-member': 'off',
429442
'unicorn/consistent-function-scoping': 'off',

0 commit comments

Comments
 (0)