9.0.0 β’ Published 8 months ago
@putout/plugin-remove-nested-blocks v9.0.0
@putout/plugin-remove-nested-blocks 
Delimited by a pair of curly brackets block statement is used to group zero or more statements.
(c) MDN
πPutout plugin adds ability to find and remove nested bocks.
βοΈRemember, when you writing a transform you can skip all parts related to removing nested blocks and just reuse current plugin it will make your code simpler and less error prone.
Install
npm i @putout/plugin-remove-nested-blocksRule
{
"rules": {
"remove-nested-blocks": "on"
}
}β Example of incorrect code
for (const x of Object.keys(a)) {
{
console.log(x);
console.log(xxx);
}
}β Example of correct code
for (const x of Object.keys(a)) {
console.log(x);
console.log(xxx);
}
switch(x) {
case 1: {
const m = 5;
}
}Comparison
| Linter | Rule | Fix |
|---|---|---|
| π Putout | remove-nested-blocks | β |
| β£ ESLint | no-lone-blocks | β |
License
MIT