Skip to content

Commit 89f06ba

Browse files
committed
Publish v0.12.0
1 parent df53174 commit 89f06ba

File tree

4 files changed

+433
-717
lines changed

4 files changed

+433
-717
lines changed

CHANGELOG.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
:eslint-react-rules: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules
44
:eslint-jsx-a11y-rules: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules
55

6+
== v0.12.0
7+
8+
* Updated `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]` to `link:{eslint-config-tags}/v0.23.0[0.23.0]`.
9+
* Updated `eslint-plugin-jsx-a11y` to `6.8.0`.
10+
11+
612
== v0.11.0
713

814
* Updated `link:https://github.com/perfective/eslint-config[@perfective/eslint-config]` to `link:{eslint-config-tags}/v0.22.0[0.22.0]`.

MIGRATION_GUIDE.adoc

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,31 @@ 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.11.0` to `v0.12.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-react',
21+
],
22+
overrides: [
23+
{
24+
files: ['*.[jt]s?(x)'],
25+
rules: {
26+
'@typescript-eslint/no-unsafe-unary-minus': 'off',
27+
'jest/no-confusing-set-timeout': 'off',
28+
'no-object-constructor': 'off',
29+
'testing-library/prefer-implicit-assert': 'off',
30+
},
31+
},
32+
],
33+
};
34+
----
35+
36+
1237
== From `v0.10.0` to `v0.11.0`
1338

1439
* If you do not use `jest`,
@@ -43,7 +68,7 @@ if you have any.
4368
----
4469
module.exports = {
4570
extends: [
46-
'@perfective/eslint-config',
71+
'@perfective/eslint-config-react',
4772
],
4873
overrides: [
4974
{

0 commit comments

Comments
 (0)