Skip to content

Commit 1915bed

Browse files
committed
chore(eslint): Enable constant-conditions on loops for manual break
1 parent 362e213 commit 1915bed

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/eslint/base.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ module.exports = {
3737
'@typescript-eslint/no-useless-constructor': ['off'],
3838
'no-nested-ternary': 'warn',
3939
'no-await-in-loop': 'warn',
40+
'no-constant-condition': ['warn', { checkLoops: false }],
4041
'no-shadow': 'warn',
4142
'quote-props': ['warn', 'consistent'],
4243
'comma-dangle': ['warn', 'always-multiline'],

0 commit comments

Comments
 (0)