webbhuset/elm-review-no-unqualified-functions - version: 1.0.1

for more information visit the package's GitHub page

Package contains the following modules:

elm-review-no-imported-functions

Provides an [elm-review] rule that forbids the use of unqualified functions from other modules, forcing qualified functions.

Provided rule

Automatic Fixes

The rule provides a fix that will add qualifiers to each unqualified function.

Note that this fix will leave the exposing () section of import statements unchanged; the fixes in jfmengels/review-unused can remove them.

Configuration

module ReviewConfig exposing (config)

import NoUnqualifiedFunctions
import Review.Rule exposing (Rule)


config : List Rule
config =
    [ NoUnqualifiedFunctions.rule
    ]

Try it out

elm-review --template webbhuset/elm-review-no-unqualified-functions/example