@putout/plugin-remove-boolean-from-assertions
v1.1.1
Published
šPutout plugin adds ability to remove boolean from assertions
Maintainers
Readme
@putout/plugin-remove-boolean-from-assertions 
šPutout plugin adds ability to remove boolean from assertions. Merged to @putout/plugin-conditions.
Install
npm i @putout/plugin-remove-boolean-from-assertionsRule
{
"rules": {
"remove-boolean-from-assertions": "on"
}
}ā Example of incorrect code
if (a === true)
alert();ā Example of correct code
if (a)
alert();License
MIT
