Skip to content

Commit 8e05269

Browse files
committed
Publish v0.22.1
1 parent 5deefb6 commit 8e05269

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
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.22.1
7+
8+
* Updated `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]`
9+
to `link:{eslint-config-tags}/v0.26.1[0.26.1]`.
10+
** Supports TypeScript v5.5.
11+
12+
613
== v0.22.0
714

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2020-2022 Andrey Mikheychik (https://github.com/amikheychik)
3+
Copyright (c) 2020-2024 Andrey Mikheychik (https://github.com/amikheychik)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MIGRATION_GUIDE.adoc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,29 @@ 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.22.0` to `v0.22.1`
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+
'@stylistic/ts/object-curly-newline': 'off',
27+
'@stylistic/ts/object-property-newline': 'off',
28+
},
29+
},
30+
],
31+
};
32+
----
33+
34+
1235
== From `v0.21.0` to `v0.22.0`
1336

1437
* Remove `eslint-plugin-node` from `devDependencies`, if present.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@perfective/eslint-config-angular",
3-
"version": "0.22.0",
3+
"version": "0.22.1",
44
"description": "ESLint shareable rules configuration for Angular",
55
"keywords": [
66
"angular",

0 commit comments

Comments
 (0)