@foray1010/eslint-config 12.2.2 → 12.2.4
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/bases/base.mjs +1 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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
|
+
## [12.2.4](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@12.2.3...@foray1010/eslint-config@12.2.4) (2024-06-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **deps:** update dependency eslint-plugin-compat to v5 ([d9743af](https://github.com/foray1010/common-presets/commit/d9743af383e66d3365db4024cbf7c40572eb50d4))
|
|
11
|
+
- **deps:** update dependency eslint-plugin-unicorn to v54 ([33438db](https://github.com/foray1010/common-presets/commit/33438db1de6efc74a90510b5003e6464bcfd630f))
|
|
12
|
+
|
|
13
|
+
## [12.2.3](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@12.2.2...@foray1010/eslint-config@12.2.3) (2024-06-09)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- **deps:** update dependency eslint-plugin-deprecation to v3 ([d2ffb11](https://github.com/foray1010/common-presets/commit/d2ffb11d25e0cac54d37fb0b100d2f75f72483fa))
|
|
18
|
+
- **deps:** update dependency eslint-plugin-unicorn to v53 ([6f4d23b](https://github.com/foray1010/common-presets/commit/6f4d23b7e4c7e018a214bb4ad1bd9aa7c316426e))
|
|
19
|
+
|
|
6
20
|
## [12.2.2](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@12.2.1...@foray1010/eslint-config@12.2.2) (2024-04-15)
|
|
7
21
|
|
|
8
22
|
### Bug Fixes
|
package/bases/base.mjs
CHANGED
|
@@ -289,8 +289,7 @@ const baseConfig = [
|
|
|
289
289
|
languageOptions: {
|
|
290
290
|
ecmaVersion: 2023,
|
|
291
291
|
globals: {
|
|
292
|
-
|
|
293
|
-
...globals.es2021,
|
|
292
|
+
...globals.es2023,
|
|
294
293
|
/* Not using `node` to explicitly import node.js only built-in modules, e.g.
|
|
295
294
|
* import { Buffer } from 'node:buffer'
|
|
296
295
|
* import process from 'node:process'
|
|
@@ -301,7 +300,6 @@ const baseConfig = [
|
|
|
301
300
|
plugins: {
|
|
302
301
|
'@eslint-community/eslint-comments': eslintPluginEslintComments,
|
|
303
302
|
import: eslintPluginImport,
|
|
304
|
-
// @ts-expect-error
|
|
305
303
|
regexp: eslintPluginRegexp,
|
|
306
304
|
unicorn: eslintPluginUnicorn,
|
|
307
305
|
},
|
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": "12.2.
|
|
4
|
+
"version": "12.2.4",
|
|
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": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"confusing-browser-globals": "^1.0.11",
|
|
29
29
|
"eslint-config-prettier": "^9.0.0",
|
|
30
30
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
31
|
-
"eslint-plugin-compat": "^
|
|
32
|
-
"eslint-plugin-deprecation": "^
|
|
31
|
+
"eslint-plugin-compat": "^5.0.0",
|
|
32
|
+
"eslint-plugin-deprecation": "^3.0.0",
|
|
33
33
|
"eslint-plugin-functional": "^6.0.0",
|
|
34
34
|
"eslint-plugin-import": "^2.29.0",
|
|
35
35
|
"eslint-plugin-jest": "^28.0.0",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"eslint-plugin-regexp": "^2.1.1",
|
|
42
42
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
43
43
|
"eslint-plugin-testing-library": "^6.1.2",
|
|
44
|
-
"eslint-plugin-unicorn": "^
|
|
45
|
-
"globals": "^15.
|
|
44
|
+
"eslint-plugin-unicorn": "^54.0.0",
|
|
45
|
+
"globals": "^15.4.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/confusing-browser-globals": "1.0.3",
|
|
49
|
-
"@types/eslint": "8.56.
|
|
49
|
+
"@types/eslint": "8.56.10",
|
|
50
50
|
"@types/eslint__js": "8.42.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "3692469c98b47ba3808aa57c36f48705f7c9734e"
|
|
73
73
|
}
|