v2.2.0
Changelog
Add prefer-ramda-boolean
rule
- Valid
R.T
R.F
- Invalid
function () { return true; }
() => { return true; }
() => false
Add always-simplification
rule
- Valid
R.T
R.F
- Invalid
always(true)
always(false)
Add pipe-simplification
and compose-simplification
Suggesting composition of map
and flatten
to be chain
.
Detects map(pickAll(_))
And suggests using project
.