@foray1010/eslint-config 13.0.1 → 13.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 +15 -0
- package/bases/browser.mjs +1 -2
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [13.0.3](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@13.0.2...@foray1010/eslint-config@13.0.3) (2025-01-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **deps:** update dependency eslint-config-prettier to v10 ([3af6ad0](https://github.com/foray1010/common-presets/commit/3af6ad03346221dfd0360a694977851c84602481))
|
|
11
|
+
- **deps:** update dependency eslint-plugin-functional to v8 ([24e2725](https://github.com/foray1010/common-presets/commit/24e272555e1dfbc8a9d80a46e148bd08d387fa1f))
|
|
12
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v5 ([1bb4665](https://github.com/foray1010/common-presets/commit/1bb4665f0c5bf62849b5e014e3267fa425fd3c7c))
|
|
13
|
+
- **deps:** update dependency eslint-plugin-testing-library to v7 ([b9a2caa](https://github.com/foray1010/common-presets/commit/b9a2caa046dbaaa5310e8c5236a6e48b7cfc3141))
|
|
14
|
+
|
|
15
|
+
## [13.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@13.0.1...@foray1010/eslint-config@13.0.2) (2024-10-06)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **deps:** update dependency eslint-plugin-unicorn to v56 ([a4c6085](https://github.com/foray1010/common-presets/commit/a4c6085202997b866d9133802719fcaf115b8b4e))
|
|
20
|
+
|
|
6
21
|
## [13.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@13.0.0...@foray1010/eslint-config@13.0.1) (2024-08-27)
|
|
7
22
|
|
|
8
23
|
### Bug Fixes
|
package/bases/browser.mjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { fixupPluginRules } from '@eslint/compat'
|
|
2
1
|
import { hasDep } from '@foray1010/common-presets-utils'
|
|
3
2
|
import restrictedGlobals from 'confusing-browser-globals'
|
|
4
3
|
import eslintPluginCompat from 'eslint-plugin-compat'
|
|
@@ -49,7 +48,7 @@ const browserConfig = [
|
|
|
49
48
|
{
|
|
50
49
|
files: testFileGlobs,
|
|
51
50
|
plugins: {
|
|
52
|
-
'testing-library':
|
|
51
|
+
'testing-library': eslintPluginTestingLibrary,
|
|
53
52
|
},
|
|
54
53
|
rules: {
|
|
55
54
|
...eslintPluginTestingLibrary.configs['flat/dom']?.rules,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@foray1010/eslint-config",
|
|
4
|
-
"version": "13.0.
|
|
4
|
+
"version": "13.0.3",
|
|
5
5
|
"homepage": "https://github.com/foray1010/common-presets/tree/master/packages/eslint-config#readme",
|
|
6
6
|
"bugs": "https://github.com/foray1010/common-presets/issues",
|
|
7
7
|
"repository": {
|
|
@@ -21,25 +21,24 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
24
|
-
"@eslint/compat": "^1.1.1",
|
|
25
24
|
"@eslint/js": "^9.9.1",
|
|
26
25
|
"@foray1010/common-presets-utils": "^8.0.0",
|
|
27
26
|
"confusing-browser-globals": "^1.0.11",
|
|
28
|
-
"eslint-config-prettier": "^
|
|
27
|
+
"eslint-config-prettier": "^10.0.0",
|
|
29
28
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
30
29
|
"eslint-plugin-compat": "^6.0.0",
|
|
31
|
-
"eslint-plugin-functional": "^
|
|
30
|
+
"eslint-plugin-functional": "^8.0.0",
|
|
32
31
|
"eslint-plugin-import-x": "^4.1.0",
|
|
33
32
|
"eslint-plugin-jest": "^28.8.0",
|
|
34
33
|
"eslint-plugin-jest-dom": "^5.4.0",
|
|
35
34
|
"eslint-plugin-n": "^17.10.2",
|
|
36
35
|
"eslint-plugin-prettier": "^5.2.1",
|
|
37
36
|
"eslint-plugin-react": "^7.35.0",
|
|
38
|
-
"eslint-plugin-react-hooks": "^
|
|
37
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
39
38
|
"eslint-plugin-regexp": "^2.6.0",
|
|
40
39
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
41
|
-
"eslint-plugin-testing-library": "^
|
|
42
|
-
"eslint-plugin-unicorn": "^
|
|
40
|
+
"eslint-plugin-testing-library": "^7.0.0",
|
|
41
|
+
"eslint-plugin-unicorn": "^56.0.0",
|
|
43
42
|
"globals": "^15.9.0",
|
|
44
43
|
"typescript-eslint": "^8.3.0"
|
|
45
44
|
},
|
|
@@ -68,5 +67,5 @@
|
|
|
68
67
|
"publishConfig": {
|
|
69
68
|
"access": "public"
|
|
70
69
|
},
|
|
71
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "e5f6eec0c99af66a5a03cda9486cd3ceba8dcb06"
|
|
72
71
|
}
|