Releases: freaktechnik/eslint-plugin-array-func
Releases · freaktechnik/eslint-plugin-array-func
v3.1.3
- never try to replace
indexOf/lastIndexOfwith each other.
v3.1.2
- Fix
prefer-flat-maprule to preferflatMapfor the correct chain of operations - Make the auto fix for
avoid-reverseindexOfandlastIndexOfto hold the same value
v3.1.1
- Actually export the flattening rules
v3.1.0
- Add
prefer-flatrule - Add
prefer-flat-maprule - Add
allconfiguration
v3.0.0
- Add
avoid-reverserule, suggesting to use inverse operations instead of callingreverse()
https://air.ghost.io/js-things-i-never-knew-existed/ reminded me that this may not be obvious and is in the same vein as avoiding amap()call afterArray.from().
v2.0.1
- Fix a typo in the
prefer-array-fromdescription. Thanks @aliceklipper