Skip to content

Commit 525ded5

Browse files
committedNov 17, 2023
fix: Syntax
1 parent fa4c21a commit 525ded5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎common/overrides.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ module.exports = {
44
// It's a bit annoying
55
rules: {
66
// There is no need to specify return types for test case function body it('...', fn)
7-
'@typescript-eslint/explicit-function-return-type': 0,
7+
'@typescript-eslint/explicit-function-return-type': "off",
88
// There is no mandatory to specify types in tests
9-
'@typescript-eslint/no-explicit-any': 0,
9+
'@typescript-eslint/no-explicit-any': "off",
1010
},
1111
},
1212
allowRequireInConfigs: {

0 commit comments

Comments
 (0)
Please sign in to comment.