Skip to content

Commit fc8c087

Browse files
committed
Re-disable lint no-unnecessary-condition until bulk suppression can be used
1 parent cb69317 commit fc8c087

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.eslintrc.cjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,11 @@ const config = {
206206
'error',
207207
{ fixMixedExportsWithInlineTypeSpecifier: true },
208208
],
209+
// TODO Enable this and fix errors (both types & logic changes will be needed)
210+
// Remaining errors probably need individual thought.
211+
// ESLint 9.24 allows bulk suppression,
212+
// which we can use to enable this, and handle those cases one by one.
213+
'@typescript-eslint/no-unnecessary-condition': 'off',
209214

210215
// Allow unused session while we migrate
211216
'@seedcompany/no-unused-vars': [

0 commit comments

Comments
 (0)