diff --git a/rules/style.js b/rules/style.js index d034eec..7232c2e 100644 --- a/rules/style.js +++ b/rules/style.js @@ -355,10 +355,6 @@ module.exports = { // https://eslint.org/docs/rules/no-bitwise 'no-bitwise': 'error', - // disallow use of the continue statement - // https://eslint.org/docs/rules/no-continue - 'no-continue': 'error', - // disallow comments inline after code 'no-inline-comments': 'off', @@ -422,11 +418,6 @@ module.exports = { message: 'for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.', }, - { - selector: 'ForOfStatement', - message: - 'iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations.', - }, { selector: 'LabeledStatement', message: