Skip to content

Commit

Permalink
Remove import no-deprecated rule (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpolavar authored Jan 21, 2025
1 parent ce98767 commit 7b51d28
Show file tree
Hide file tree
Showing 3 changed files with 464 additions and 163 deletions.
3 changes: 2 additions & 1 deletion index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ const tsConfigurations = [
devDependencies: ['**/*.spec.ts', '**/*.test.ts'],
},
],
'import/no-deprecated': 'error',
'import/namespace': 'off',

// has a bug, throws an exception in some cases
Expand All @@ -170,6 +169,7 @@ const tsConfigurations = [
'require-yield': 'error',
'no-console': 'error',
'no-return-await': 'error',
'@typescript-eslint/no-deprecated': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'error',
'@typescript-eslint/ban-ts-comment': 'error',
Expand Down Expand Up @@ -435,6 +435,7 @@ const tsConfigurations = [
'sonarjs/no-exclusive-tests': 'off', // duplicate
'sonarjs/no-identical-functions': 'off',
'sonarjs/no-misleading-array-reverse': 'off',
'sonarjs/slow-regexp': 'off',
'sonarjs/pseudo-random': 'off',
'sonarjs/unused-named-groups': 'off',
'unicorn/no-useless-undefined': 'off',
Expand Down
Loading

0 comments on commit 7b51d28

Please sign in to comment.