Skip to content

Commit

Permalink
lint: fix eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jun 20, 2023
1 parent ce23db7 commit c9c1b8e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins:
parserOptions:
ecmaVersion: 2018
sourceType: module
project:
project:
- ./tsconfig.json
- ./tsconfig.spec.json
extends:
Expand All @@ -17,16 +17,19 @@ rules:
'@typescript-eslint/no-angle-bracket-type-assertion': off
'@typescript-eslint/no-parameter-properties': off
'@typescript-eslint/explicit-function-return-type': off
'@typescript-eslint/member-delimiter-style': off
'@typescript-eslint/no-inferrable-types': off
'@typescript-eslint/no-explicit-any': off
'@typescript-eslint/member-ordering': 'error'
'@typescript-eslint/no-unused-vars':
- 'error'
- args: 'none'
'@typescript-eslint/no-unsafe-argument': off
'@typescript-eslint/ban-types': off
# TODO: Remove these and fixed issues once we merged all the current PRs.
'@typescript-eslint/ban-types': off
'@typescript-eslint/no-unsafe-return': off
'@typescript-eslint/no-unsafe-assignment': off
'@typescript-eslint/no-unsafe-call': off
'@typescript-eslint/no-unsafe-member-access': off
'@typescript-eslint/no-unsafe-argument': off
'@typescript-eslint/explicit-module-boundary-types': off
'@typescript-eslint/restrict-template-expressions': off

0 comments on commit c9c1b8e

Please sign in to comment.