Skip to content

Commit d263a1b

Browse files
committed
Publish v0.19.0
1 parent edc176a commit d263a1b

File tree

4 files changed

+623
-653
lines changed

4 files changed

+623
-653
lines changed

CHANGELOG.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
:eslint-angular-rules: https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules
44
:eslint-angular-template-rules: https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/docs/rules
55

6+
== v0.19.0
7+
8+
* Upgraded `@angular-eslint` to `17.1.0`:
9+
** Enabled the `link:{eslint-angular-template-rules}/prefer-control-flow.md[@angular-eslint/template/prefer-control-flow]` rule
10+
as an error.
11+
12+
613
== v0.18.1
714

815
* Patched `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]`

MIGRATION_GUIDE.adoc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ Migration between minor versions follows the same steps:
99
** fix errors or check auto-fixes of warnings;
1010
** check for the regressions.
1111

12+
== From `v0.18.1` to `v0.19.0`
13+
14+
* Disable and gradually enable new rules in the `.eslintrc.js`.
15+
+
16+
[source,js]
17+
----
18+
module.exports = {
19+
extends: [
20+
'@perfective/eslint-config-angular',
21+
],
22+
overrides: [
23+
{
24+
files: ['*.[jt]s?(x)'],
25+
rules: {
26+
'@angular-eslint/template/prefer-control-flow': 'off',
27+
},
28+
},
29+
],
30+
};
31+
----
32+
33+
1234
== From `v0.17.0` to `v0.18.1`
1335

1436
* Disable and gradually enable new rules in the `.eslintrc.js`.

0 commit comments

Comments
 (0)