jfmengels/lint-unused - version: 1.0.2

for more information visit the package's GitHub page

Package contains the following modules:

DEPRECATION NOTICE

elm-lint has been deprecated in favor of elm-review. To work with elm-review, this package has been republished under the name review-unused.

lint-unused

Provides elm-lint rules to detect unused functions and types in your Elm files.

Provided rules

Note

Since elm-lint only works in the scope of a single file, these rules will not report elements that are exposed but not used anywhere in the project. If you wish those to be reported, check out elm-xref.

Example configuration

module LintConfig exposing (config)

import Lint.Rule exposing (Rule)
import NoUnused.Variables
import NoUnused.CustomTypeConstructors

config : List Rule
config =
    [ NoUnused.Variables.rule
    , NoUnused.CustomTypeConstructors.rule
    ]