lue-bird/elm-review-links-point-to-existing-package-members - version: 1.0.4

for more information visit the package's GitHub page

Package contains the following modules:

Use Docs.ReviewLinksAndSections from jfmengels/elm-review-documentation instead! It has more options, notices sections etc.

elm-review-links-point-to-existing-package-members

elm-review rules to check your links:

Reports if the linked module or definition doesn't exists in the package.

Provided rules

Configuration

module ReviewConfig exposing (config)

import LinksPointToExistingPackageMembers
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ LinksPointToExistingPackageMembers.rule
    ]

Try it out

You can try the example configuration above out by running the following command:

elm-review --template lue-bird/elm-review-links-point-to-existing-package-members/example