ContaSystemer / elm-review-no-missing-documentation / NoMissingDocumentation

Make sure that every top level declaration is documented.

Rule

rule : Review.Rule.Rule

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 ]