jfmengels/review-debug - version: 2.0.3

for more information visit the package's GitHub page

Package contains the following modules:

DEPRECATED

This package was republished as jfmengels/elm-review-debug in order to have a more consistent naming convention for elm-review rule packages.

To migrate, I recommend going to your review configuration and running the following commands:

# NOTE: You'll need to have Node.js installed to be able to use `npx`
npx elm-json uninstall jfmengels/review-debug --yes
npx elm-json install jfmengels/elm-review-debug --yes

review-debug

Provides elm-review rules to detect debug code.

Provided rules

Configuration

module ReviewConfig exposing (config)

import NoDebug.Log
import NoDebug.TodoOrToString
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoDebug.Log.rule
    , NoDebug.TodoOrToString.rule
    ]