Releases: jfmengels/elm-review-unused
Releases · jfmengels/elm-review-unused
Fix false positive for NoUnused.Variables
Remove false positives for NoUnused.CustomTypeConstructorArgs
Resolving of false positives and false negatives
False positive fixes:
NoUnused.Variables
: Fixed a confusing situation where we import a custom type constructor and a type with the same name #29 (Thanks @kraklin, @sporto and @MartinSStewart)NoUnused.CustomTypeConstructorArgs
:Never
argument were being reported #31 (Thanks @SiriusStarr)NoUnused.Variables
: Unused ports were being reported even when exposed withmodule A exposing (..)
(Thanks @Augustin82)
False negative fixes:
NoUnused.Patterns
: Some unused patterns were not being reported when using nested case expressions (Thanks @Augustin82)
Detection of a lot of dead code
This releases includes a lot of changes, described in https://jfmengels.net/unused-patch-1-1-5/