1.1.1 β€’ Published 1 year ago

@putout/plugin-apply-if-condition v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@putout/plugin-apply-if-condition NPM version

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

(c) MDN

🐊Putout plugin adds ability to apply if condition. Merged to @putout/plugin-conditions.

Install

npm i @putout/plugin-apply-if-condition

Rule

Rule apply-if-condition:

Rule

{
    "rules": {
        "apply-if-condition": "on"
    }
}

❌ Example of incorrect code

if (2 > 3);
    alert();

βœ… Example of correct code

if (2 > 3)
    alert();

License

MIT