Skip to content

Commit

Permalink
feat: disable redundant rules
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Dec 12, 2023
1 parent c140b13 commit 2a5a62b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/eslint-plugin-experience/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ module.exports = {
],
'@taiga-ui/experience/no-private-esnext-fields': 'error',
'@taiga-ui/experience/no-simple-for-of': 'error',
'@taiga-ui/experience/no-typeof': 'error',
'@taiga-ui/experience/prefer-inject-decorator': 'error',
'@taiga-ui/experience/prefer-self-destroy-service': 'error',
'@taiga-ui/experience/strict-tui-doc-example': 'error',
Expand Down Expand Up @@ -379,7 +378,6 @@ module.exports = {
selector: 'classProperty',
},
],
'@typescript-eslint/no-base-to-string': 'error',
'@typescript-eslint/no-confusing-non-null-assertion': 'error',
'@typescript-eslint/no-duplicate-enum-values': 'error',
'@typescript-eslint/no-empty-function': [
Expand Down Expand Up @@ -852,9 +850,11 @@ module.exports = {
'@angular-eslint/use-component-selector': 'off',
'@angular-eslint/use-component-view-encapsulation': 'off',
'@angular-eslint/use-injectable-provided-in': 'off',
'@taiga-ui/experience/no-typeof': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/consistent-type-imports': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-shadow': 'off',
Expand Down

0 comments on commit 2a5a62b

Please sign in to comment.