@anolilab/eslint-config 4.0.0 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ### @anolilab/eslint-config [4.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@4.0.2...@anolilab/eslint-config@4.0.3) (2022-05-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fixed wrong name of plugin file ([aa97e40](https://github.com/anolilab/javascript-style-guide/commit/aa97e40d310434f22f112e314ca8e50aba24409c))
7
+
8
+ ### @anolilab/eslint-config [4.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@4.0.1...@anolilab/eslint-config@4.0.2) (2022-05-13)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * fixed wrong dep name of a11y ([4031a25](https://github.com/anolilab/javascript-style-guide/commit/4031a25528293f072a8c6bce7177dc784b34d911))
14
+
15
+ ### @anolilab/eslint-config [4.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@4.0.0...@anolilab/eslint-config@4.0.1) (2022-05-11)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * fixed wrong peerDependencies on eslint ([a9e7813](https://github.com/anolilab/javascript-style-guide/commit/a9e7813756af431e2144ef945011ed5d70d63681))
21
+
1
22
  ## @anolilab/eslint-config [4.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@3.0.2...@anolilab/eslint-config@4.0.0) (2022-05-11)
2
23
 
3
24
 
package/config.cjs CHANGED
@@ -34,7 +34,7 @@ const depRules = [
34
34
  ["lodash", "lodash-fp"],
35
35
  "jsdoc",
36
36
  "react",
37
- ["react", "react-a11y"],
37
+ ["react", "jsx-a11y"],
38
38
  ["react", "react-hooks"],
39
39
  ];
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/eslint-config",
3
- "version": "4.0.0",
3
+ "version": "4.0.3",
4
4
  "description": "ESLint shareable config for the Anolilab JavaScript style guide.",
5
5
  "keywords": [
6
6
  "css",
@@ -84,7 +84,7 @@
84
84
  "eslint-find-rules": "4.1.0",
85
85
  "eslint-plugin-babel": "5.3.1",
86
86
  "eslint-plugin-cypress": "2.12.1",
87
- "eslint-plugin-jest": "26.1.5",
87
+ "eslint-plugin-jest": "26.2.2",
88
88
  "eslint-plugin-jest-async": "1.0.3",
89
89
  "eslint-plugin-jest-dom": "4.0.1",
90
90
  "eslint-plugin-jest-formatting": "3.1.0",
@@ -97,14 +97,14 @@
97
97
  "eslint-plugin-react": "7.29.4",
98
98
  "eslint-plugin-react-hooks": "4.5.0",
99
99
  "eslint-plugin-react-redux": "4.0.0",
100
- "eslint-plugin-testing-library": "5.4.0",
100
+ "eslint-plugin-testing-library": "5.5.0",
101
101
  "eslint-plugin-typescript-sort-keys": "2.1.0",
102
102
  "jest": "28.1.0",
103
103
  "react": "18.1.0",
104
104
  "typescript": "^4.6.4"
105
105
  },
106
106
  "peerDependencies": {
107
- "eslint": "^7.32.0"
107
+ "eslint": "^8.15.0"
108
108
  },
109
109
  "optionalDependencies": {
110
110
  "@typescript-eslint/eslint-plugin": "^5.23.0",
File without changes