Provides elm-review
rule to ensure URLs are not build using string concatenation, and suggests using Url.Builder package instead.
module ReviewConfig exposing (config)
import NoUrlStringConcatenation
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoUrlStringConcatenation.rule
]
You can try the example configuration above out by running the following command:
elm-review --template Yagger/elm-review-no-url-string-concatenation/example