@mscharley/eslint-config 3.1.2 → 3.1.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 +14 -0
- package/package.json +6 -6
- package/partials/eslint.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log - @mscharley/eslint-config
|
|
2
2
|
|
|
3
|
+
## 3.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6e298f0: Migrate to `n/no-process-exit` instead of the deprecated `no-process-exit` rule
|
|
8
|
+
- 7d74015: fix(deps): update typescript-eslint monorepo to ^7.5.0
|
|
9
|
+
- 0951542: fix(deps): update dependency typescript to v5.4.4
|
|
10
|
+
- f39ccd3: fix(deps): update typescript-eslint monorepo to ^7.6.0
|
|
11
|
+
- 93bf6c6: fix(deps): update dependency typescript to v5.4.5
|
|
12
|
+
- c5c49af: fix(deps): update dependency @stylistic/eslint-plugin to ^1.7.2
|
|
13
|
+
- 71c43a3: fix(deps): update typescript-eslint monorepo to ^7.7.0
|
|
14
|
+
- 7aef700: fix(deps): update typescript-eslint monorepo to ^7.7.1
|
|
15
|
+
- c21caaa: fix(deps): update dependency eslint-plugin-react-hooks to ^4.6.1
|
|
16
|
+
|
|
3
17
|
## 3.1.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mscharley/eslint-config",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"provenance": true
|
|
6
6
|
},
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/mscharley/node-presets#readme",
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@stylistic/eslint-plugin": "^1.7.
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
32
|
-
"@typescript-eslint/parser": "^7.
|
|
30
|
+
"@stylistic/eslint-plugin": "^1.7.2",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
|
32
|
+
"@typescript-eslint/parser": "^7.7.1",
|
|
33
33
|
"eslint": "^8.57.0",
|
|
34
34
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
35
35
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"eslint-plugin-jest": "^27.9.0",
|
|
38
38
|
"eslint-plugin-n": "^16.6.2",
|
|
39
39
|
"eslint-plugin-react": "^7.34.1",
|
|
40
|
-
"eslint-plugin-react-hooks": "^4.6.
|
|
41
|
-
"typescript": "^5.4.
|
|
40
|
+
"eslint-plugin-react-hooks": "^4.6.1",
|
|
41
|
+
"typescript": "^5.4.5"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/partials/eslint.js
CHANGED