jfmengels/lint-debug - version: 1.0.1

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-debug.

lint-debug

Provides elm-lint rules to detect debug code.

Provided rules

Configuration

module LintConfig exposing (config)

import Lint.Rule exposing (Rule)
import NoDebug

config : List Rule
config =
    [ NoDebug.rule
    ]