Skip to content

Commit

Permalink
disable no-loop-func eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 20, 2023
1 parent ff68fa6 commit e8e1437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/eslint/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ const base = {
// disallow `if` as the only statement in an `else` block
'no-lonely-if': ERROR,
// disallow function declarations and expressions inside loop statements
'no-loop-func': ERROR,
'no-loop-func': OFF,
// disallow use of multiline strings
'no-multi-str': ERROR,
// disallow use of new operator when not part of the assignment or comparison
Expand Down

0 comments on commit e8e1437

Please sign in to comment.