Skip to content

Latest commit

 

History

History
 
 

README.md

@putout/plugin-merge-if-statements NPM version

The if statement executes a statement if a specified condition is truthy.

(c) MDN

🐊Putout plugin adds ability to merge if statements.

Install

npm i @putout/plugin-merge-if-statements

Rule

{
    "rules": {
        "merge-if-statements": "on"
    }
}

❌ Example of incorrect code

if (a > b) {
    if (b < c) {
        console.log('hello');
    }
}

✅ Example of correct code

if (a > b && b < c) {
    console.log('hello');
}

License

MIT