Skip to content

Files

Latest commit

6506832 · Mar 11, 2023

History

History
This branch is 1 commit ahead of, 5650 commits behind coderaiser/putout:master.

plugin-remove-useless-continue

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 21, 2023
Feb 1, 2023
Jul 20, 2022
Jan 6, 2022
Apr 26, 2021
Apr 26, 2021
Apr 26, 2021
Apr 26, 2021
Apr 26, 2021
Feb 1, 2023
Mar 11, 2023

@putout/plugin-remove-useless-continue NPM version

The continue statement terminates execution of the statements in the current iteration of loop.

(c) MDN

🐊Putout plugin adds ability to remove useless continue.

Install

npm i @putout/plugin-remove-useless-continue

Rule

{
    "rules": {
        "remove-useless-continue": "on"
    }
}

❌ Example of incorrect code

for (sign = decpt, i = 0; sign /= 10 !== 0; i++) {
    console.log('hello');
    continue;
}

✅ Example of correct code

for (sign = decpt, i = 0; sign /= 10 !== 0; i++) {
    console.log('hello');
}

License

MIT