for more information visit the package's GitHub page
Package contains the following modules:
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
.
Provides elm-lint
rules to detect debug code.
NoDebug
- Reports uses or imports of the Debug
module.module LintConfig exposing (config)
import Lint.Rule exposing (Rule)
import NoDebug
config : List Rule
config =
[ NoDebug.rule
]