1.1.1 β’ Published 2 years ago
@putout/plugin-apply-if-condition v1.1.1
@putout/plugin-apply-if-condition
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