Skip to content

v2.2.0

Compare
Choose a tag to compare
@haskellcamargo haskellcamargo released this 18 Nov 19:04
· 35 commits to master since this release
2f1f8f8

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.