Skip to content

Commit

Permalink
fix(eslint-config): disable no-unnecessary-condition for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Feb 17, 2022
1 parent 3f51198 commit 4cb268c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eslint-config/src/jest.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ module.exports = {
'prefer-destructuring': 'off',
'no-loop-func': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-empty-function': 'off'
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off'
}
}
]
Expand Down

0 comments on commit 4cb268c

Please sign in to comment.