@pplancq/eslint-config 2.0.0 → 2.1.0
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 +14 -0
- package/package.json +6 -6
- package/rules/jest.js +1 -1
- package/rules/react.js +1 -1
- package/rules/vitest.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## @pplancq/eslint-config [2.1.0](https://github.com/pplancq/dev-tools/compare/@pplancq/eslint-config@2.0.1...@pplancq/eslint-config@2.1.0) (2024-03-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **eslint-config:** steps suffix added for test-related overrides ([937fe16](https://github.com/pplancq/dev-tools/commit/937fe16867d435c816f8f395cdd58be3a3f103c8))
|
|
7
|
+
|
|
8
|
+
## @pplancq/eslint-config [2.0.1](https://github.com/pplancq/dev-tools/compare/@pplancq/eslint-config@2.0.0...@pplancq/eslint-config@2.0.1) (2024-03-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Reverts
|
|
12
|
+
|
|
13
|
+
* **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
|
|
14
|
+
|
|
1
15
|
## @pplancq/eslint-config [2.0.0](https://github.com/pplancq/dev-tools/compare/@pplancq/eslint-config@1.0.0...@pplancq/eslint-config@2.0.0) (2024-03-12)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/eslint-config",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq eslint config",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"config"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
31
|
-
"@typescript-eslint/parser": "^7.
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^7.3.0",
|
|
31
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
32
32
|
"eslint-config-airbnb": "^19.0.4",
|
|
33
33
|
"eslint-config-prettier": "^9.1.0",
|
|
34
34
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"eslint-plugin-jest-dom": "^5.1.0",
|
|
38
38
|
"eslint-plugin-jest-extended": "^2.0.0",
|
|
39
39
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
40
|
-
"eslint-plugin-react": "^7.34.
|
|
40
|
+
"eslint-plugin-react": "^7.34.1",
|
|
41
41
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
42
42
|
"eslint-plugin-testing-library": "^6.2.0",
|
|
43
|
-
"eslint-plugin-vitest": "^0.3.
|
|
44
|
-
"eslint-plugin-vitest-globals": "^1.
|
|
43
|
+
"eslint-plugin-vitest": "^0.3.26",
|
|
44
|
+
"eslint-plugin-vitest-globals": "^1.5.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"eslint": "^8.57.0",
|
package/rules/jest.js
CHANGED
package/rules/react.js
CHANGED
|
@@ -89,7 +89,7 @@ module.exports = {
|
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
extends: ['plugin:jest-dom/recommended'],
|
|
92
|
-
files: ['*.{test,spec}.{js,jsx,ts,tsx}'],
|
|
92
|
+
files: ['*.{test,spec,steps}.{js,jsx,ts,tsx}'],
|
|
93
93
|
plugins: ['testing-library'],
|
|
94
94
|
rules: {
|
|
95
95
|
// eslint-plugin-testing-library https://github.com/testing-library/eslint-plugin-testing-library
|