@putout/plugin-apply-consistent-blocks

1.2.1 • Public • Published

@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

Package Sidebar

Install

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

Weekly Downloads

0

Version

1.2.1

License

MIT

Unpacked Size

4.94 kB

Total Files

4

Last publish

Collaborators

  • coderaiser