@putout/plugin-apply-if-condition
The
if
statement executes a statement if a specified condition is truthy.(c) MDN
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