ContaSystemer / elm-review-no-missing-documentation

elm-review rule to enforce documentation for every top level declaration
BSD 3-Clause "New" or "Revised" License
0 stars 2 forks source link

review-no-missing-documentation

Provides elm-review rule enforce documentation for every top-level declaration.

Usage

After adding elm-review to your project, import this rule to ReviewConfig.elm file and add it to the config.

Example configuration

import NoMissingDocumentation
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoMissingDocumentation.rule ]