This package was republished as jfmengels/elm-review-documentation
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-documentation --yes
npx elm-json install jfmengels/elm-review-documentation --yes
Provides elm-review
rules to help with the quality and correctness of your Elm project's documentation.
Documentation.ReadmeLinksPointToCurrentVersion
- Reports links in theREADME.md
that do not point to the current version of the package.
module ReviewConfig exposing (config)
import Review.Rule exposing (Rule)
import Documentation.ReadmeLinksPointToCurrentVersion
config : List Rule
config =
[ Documentation.ReadmeLinksPointToCurrentVersion.rule
]