diff --git a/.changeset/ninety-items-fetch.md b/.changeset/ninety-items-fetch.md new file mode 100644 index 0000000..277388e --- /dev/null +++ b/.changeset/ninety-items-fetch.md @@ -0,0 +1,5 @@ +--- +"@kripod/eslint-config": patch +--- + +refactor(base): allow `continue` statements diff --git a/src/common.ts b/src/common.ts index 8374681..9f373af 100644 --- a/src/common.ts +++ b/src/common.ts @@ -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",