1.2.1 β€’ Published 6 months ago

@putout/plugin-apply-consistent-blocks v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

@putout/plugin-apply-consistent-blocks NPM version

A block statement is used to group zero or more statements. The block is delimited by a pair of braces ("curly braces") and contains a list of zero or more statements and declarations.

(c) MDN

🐊Putout plugin adds ability to apply consistent blocks. Check out in 🐊Putout Editor. Merged to @putout/plugin-conditions.

Install

npm i @putout/plugin-apply-consistent-blocks

Rule

{
    "rules": {
        "apply-consistent-blocks": "on"
    }
}

❌ Example of incorrect code

if (a > 3) {
    m();
}

if (a > 3)
    b = 5;
else {
    b = 6;
}

if (a > 3)
    b = 5;
else {
    b = 6;
    fn();
}

βœ… Example of correct code

if (a > 3)
    m();

if (a > 3)
    b = 5;
else
    b = 6;

if (a > 3) {
    b = 5;
} else {
    b = 6;
    fn();
}

License

MIT

1.2.1

6 months ago

1.2.0

6 months ago

1.1.0

6 months ago

1.0.0

6 months ago