lint: allow continue

pull/4/head
Cameron Clough 2022-01-08 21:49:57 +00:00
parent 2cfd298a31
commit ba4adceb2c
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@
// disallow use of unary operators, ++ and --
// http://eslint.org/docs/rules/no-plusplus
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-continue": "off",
// TODO: fix and remove
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": true }],