Skip to content

Commit 7c46f85

Browse files
committed
2.15.2
1 parent ce71478 commit 7c46f85

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [2.15.2] - 2025-08-19
6+
57
- Fixed an issue overlapping removal edits are fused would incorrectly.
68

79
## [2.15.1] - 2025-02-13
@@ -244,7 +246,8 @@ Help would be appreciated to fill the blanks!
244246
[`Review.Rule.errorFixFailure`]: https://package.elm-lang.org/packages/jfmengels/elm-review/latest/Review-Rule#errorFixFailure
245247
[`Review.Test.ignoredFilesImpactResults`]: https://package.elm-lang.org/packages/jfmengels/elm-review/latest/Review-Rule-Test#ignoredFilesImpactResults
246248

247-
[Unreleased]: https://github.com/jfmengels/elm-review/compare/v2.15.1...HEAD
249+
[Unreleased]: https://github.com/jfmengels/elm-review/compare/v2.15.2...HEAD
250+
[2.15.2]: https://github.com/jfmengels/elm-review/releases/tag/2.15.2
248251
[2.15.1]: https://github.com/jfmengels/elm-review/releases/tag/2.15.1
249252
[2.15.0]: https://github.com/jfmengels/elm-review/releases/tag/2.15.0
250253
[2.14.1]: https://github.com/jfmengels/elm-review/releases/tag/2.14.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Before you start adding rules or an unfamiliar existing configuration, I suggest
116116
## Write your own rule
117117

118118
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/).
119-
Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.1/Review-Rule/) documentation for how to get started.
119+
Check out the [`Review.Rule`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.2/Review-Rule/) documentation for how to get started.
120120

121121
**NOTE**: If you want to **create a package** containing `elm-review` rules, I highly recommend using the
122122
[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.
@@ -236,7 +236,7 @@ It does provide 2 systems that I think are better alternatives for the health of
236236

237237
### Configuring exceptions
238238

239-
You can [configure exceptions](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.1/Review-Rule/#configuring-exceptions),
239+
You can [configure exceptions](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.2/Review-Rule/#configuring-exceptions),
240240
which consists of marking specific directories or files as not relevant to a rule or set of rules, preventing errors to be reported for those.
241241

242242
It is a good fit if you wish for `elm-review` to not report errors in vendored or generated code,
@@ -282,7 +282,7 @@ the codebase. You can use this to gain insight into your codebase, or provide in
282282
powerful integrations.
283283

284284
To make use of this feature, run `elm-review --extract --report=json` with a configuration containing a rule that uses
285-
[`Rule.withDataExtractor`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.1/Review-Rule/#withDataExtractor).
285+
[`Rule.withDataExtractor`](https://package.elm-lang.org/packages/jfmengels/elm-review/2.15.2/Review-Rule/#withDataExtractor).
286286

287287
The result for a rule will be stored under `<json>.extracts.<YourRuleName>`. To access it, you can then pipe the result
288288
into either a `Node.js` script, a tool that expects JSON, or [`jq`](https://stedolan.github.io/jq/) as in the example below.

docs.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

elm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "jfmengels/elm-review",
44
"summary": "Analyzes Elm projects, to help find mistakes before your users find them.",
55
"license": "BSD-3-Clause",
6-
"version": "2.15.1",
6+
"version": "2.15.2",
77
"exposed-modules": [
88
"Review.Rule",
99
"Review.ModuleNameLookupTable",

0 commit comments

Comments
 (0)