Skip to content

Commit

Permalink
Eslint config clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed Jan 28, 2024
1 parent 6d469a5 commit 20f1ea2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ plugins:
- jest-extended

rules:
'@typescript-eslint/dot-notation': error
no-shadow: off
import/no-default-export: off
import/prefer-default-export: off
import/no-extraneous-dependencies:
Expand All @@ -47,15 +45,15 @@ rules:
ts: never
json: always

'@typescript-eslint/explicit-function-return-type': off
'@typescript-eslint/explicit-module-boundary-types': off
no-shadow: off
'@typescript-eslint/no-shadow': error
'@typescript-eslint/dot-notation': error
'@typescript-eslint/no-unsafe-member-access': off
'@typescript-eslint/no-unsafe-return': off
'@typescript-eslint/no-unsafe-assignment': off
'@typescript-eslint/no-unsafe-call': off
'@typescript-eslint/no-explicit-any': off
'@typescript-eslint/no-unsafe-declaration-merging': off
'@typescript-eslint/unbound-method': error
'@typescript-eslint/no-unsafe-declaration-merging': off # For all the template extensions
'@typescript-eslint/no-unused-vars':
- error
- ignoreRestSiblings: true
Expand Down

0 comments on commit 20f1ea2

Please sign in to comment.