This commit is contained in:
Jeroen Engels 2020-09-09 18:59:19 +02:00
parent e925d0a25a
commit 81b68c4695
2 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ Before you start adding rules though, I suggest reading the rest of this documen
## Write your own rule
You can write your own rule using this package's API and [`elm-syntax`](https://package.elm-lang.org/packages/stil4m/elm-syntax/7.1.0/).
Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.3.1/Review-Rule) documentation for how to get started.
Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.3.2/Review-Rule) documentation for how to get started.
**NOTE**: If you want to create a package containing `elm-review` rules, I highly recommend using the [CLI's](https://github.com/jfmengels/node-elm-review/) `elm-review new-package` subcommand. If you want to add/create a rule, then `elm-review new-rule` will help you get set up.
@ -195,7 +195,7 @@ When wondering whether to enable a rule, I suggest using this checklist:
## Is there a way to ignore an error or disable a rule only in some locations?
You can prevent errors from being reported by either changing the implementation of your rules or by [configuring exceptions](https://package.elm-lang.org/packages/jfmengels/elm-review/2.3.1/Review-Rule#configuring-exceptions) for directories or for files.
You can prevent errors from being reported by either changing the implementation of your rules or by [configuring exceptions](https://package.elm-lang.org/packages/jfmengels/elm-review/2.3.2/Review-Rule#configuring-exceptions) for directories or for files.
It is however not possible to ignore errors on a case-by-case basis, for several reasons:

View File

@ -3,7 +3,7 @@
"name": "jfmengels/elm-review",
"summary": "Analyzes Elm projects, to help find mistakes before your users find them.",
"license": "BSD-3-Clause",
"version": "2.3.1",
"version": "2.3.2",
"exposed-modules": [
"Review.Rule",
"Review.ModuleNameLookupTable",