jfmengels/review-documentation - version: 1.0.2

for more information visit the package's GitHub page

Package contains the following modules:

DEPRECATED

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

review-documentation

Provides elm-review rules to help with the quality and correctness of your Elm project's documentation.

Provided rules

Configuration

module ReviewConfig exposing (config)

import Review.Rule exposing (Rule)
import Documentation.ReadmeLinksPointToCurrentVersion

config : List Rule
config =
    [ Documentation.ReadmeLinksPointToCurrentVersion.rule
    ]