From cda93d62b9e2faebdebe8e1ac84fe7b69775d6a6 Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Sun, 3 Oct 2021 11:17:54 +0200 Subject: [PATCH] 2.5.3 --- README.md | 4 ++-- elm.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index aecbda27..2bda5ad9 100644 --- a/README.md +++ b/README.md @@ -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.2.1/). -Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.5.2/Review-Rule) documentation for how to get started. +Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.5.3/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. This will create a new package that will help you use the best practices and give you helpful tools like easy auto-publishing. More information is available in the maintenance file generated along with it. @@ -199,7 +199,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.5.2/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.5.3/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: diff --git a/elm.json b/elm.json index f1508294..4d9757eb 100644 --- a/elm.json +++ b/elm.json @@ -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.5.2", + "version": "2.5.3", "exposed-modules": [ "Review.Rule", "Review.ModuleNameLookupTable", @@ -22,7 +22,7 @@ "stil4m/elm-syntax": "7.2.7 <= v < 8.0.0" }, "test-dependencies": { - "elm/regex": "1.0.0 <= v < 2.0.0", - "elm/parser": "1.1.0 <= v < 2.0.0" + "elm/parser": "1.1.0 <= v < 2.0.0", + "elm/regex": "1.0.0 <= v < 2.0.0" } }