Skip to content

Commit 969e479

Browse files
committed
feat(config/eslint): allow unsafe assignment + returns in test files
1 parent 98ee4cd commit 969e479

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/config/helpers/build-eslint.js

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ const buildConfig = ({withReact = false} = {}) => {
8080
{
8181
files: testMatch,
8282
rules: {
83+
'@typescript-eslint/no-unsafe-assignment': 'off',
84+
'@typescript-eslint/no-unsafe-return': 'off',
8385
'no-empty': ['error', {allowEmptyCatch: true}],
8486
},
8587
},

0 commit comments

Comments
 (0)