Skip to content

Commit c9c1b8e

Browse files
lint: fix eslint config
1 parent ce23db7 commit c9c1b8e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.eslintrc.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins:
44
parserOptions:
55
ecmaVersion: 2018
66
sourceType: module
7-
project:
7+
project:
88
- ./tsconfig.json
99
- ./tsconfig.spec.json
1010
extends:
@@ -17,16 +17,19 @@ rules:
1717
'@typescript-eslint/no-angle-bracket-type-assertion': off
1818
'@typescript-eslint/no-parameter-properties': off
1919
'@typescript-eslint/explicit-function-return-type': off
20+
'@typescript-eslint/member-delimiter-style': off
21+
'@typescript-eslint/no-inferrable-types': off
2022
'@typescript-eslint/no-explicit-any': off
2123
'@typescript-eslint/member-ordering': 'error'
2224
'@typescript-eslint/no-unused-vars':
2325
- 'error'
2426
- args: 'none'
25-
'@typescript-eslint/no-unsafe-argument': off
26-
'@typescript-eslint/ban-types': off
27+
# TODO: Remove these and fixed issues once we merged all the current PRs.
28+
'@typescript-eslint/ban-types': off
2729
'@typescript-eslint/no-unsafe-return': off
2830
'@typescript-eslint/no-unsafe-assignment': off
2931
'@typescript-eslint/no-unsafe-call': off
3032
'@typescript-eslint/no-unsafe-member-access': off
3133
'@typescript-eslint/no-unsafe-argument': off
3234
'@typescript-eslint/explicit-module-boundary-types': off
35+
'@typescript-eslint/restrict-template-expressions': off

0 commit comments

Comments
 (0)