Skip to content

Commit

Permalink
refactor(base): allow continue statements
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jan 11, 2025
1 parent 0ff1e54 commit 207804a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/ninety-items-fetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kripod/eslint-config": patch
---

refactor(base): allow `continue` statements
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const coreRules = {
"no-constant-binary-expression": "error",
"no-constant-condition": "error",
"no-constructor-return": "error",
"no-continue": "warn",
"no-continue": "off",

// TODO: Replace with 'regexp/no-control-character'
"no-control-regex": "error",
Expand Down

0 comments on commit 207804a

Please sign in to comment.