ContaSystemer / elm-review-no-regex / NoRegex

Makes sure that Regex package is not being used in the code. As mentioned in the Regex package readme, it will be easier and nicer to use parser instead of regex.

Rule

rule : Review.Rule.Rule

Usage

After adding elm-review to your project, import this rule to ReviewConfig.elm file and add it to the config.

Example configuration

import NoRegex
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoRegex.rule ]