diff --git a/.eslintrc.js b/.eslintrc.js index 1841e207f0..0553729b26 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -28,6 +28,7 @@ module.exports = { 'consistent-return': 'off', 'no-nested-ternary': 'off', 'default-case': 'off', + 'no-continue': 'off', 'no-console': 'off', 'no-restricted-syntax': 'off', 'no-underscore-dangle': 'off', @@ -119,7 +120,6 @@ module.exports = { // TODO impossible to autofix (about 250 errors in total) 'no-mixed-operators': 'off', 'no-restricted-globals': 'off', - 'no-continue': 'off', radix: 'off', 'prefer-spread': 'off', 'no-new-func': 'off', // fixed with separate PR https://github.com/fomantic/Fomantic-UI/pull/2587