@aneuhold/eslint-config 1.0.8 → 1.0.9
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/README.md +11 -0
- package/package.json +1 -7
package/README.md
CHANGED
|
@@ -26,6 +26,17 @@ Make sure to add the following settings to VSCode settings.json:
|
|
|
26
26
|
}
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
Also as of 5/26/2024 make sure to add a resolution for Globals until that is fixed in other packages:
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
"resolutions": {
|
|
33
|
+
"globals": "^15.3.0"
|
|
34
|
+
},
|
|
35
|
+
"resolutionsComments": {
|
|
36
|
+
"globals": "This is a temporary fix for the globals package due to this issue: https://github.com/eslint/eslint/discussions/17868. Once other packages pull 15+ then should be able to remove this"
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
29
40
|
### Setup for `CommonJS`
|
|
30
41
|
|
|
31
42
|
Add `eslint.config.js` like so:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aneuhold/eslint-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Main ESLint Configuration for personal projects",
|
|
5
5
|
"main": "./src/ts-lib-config.js",
|
|
6
6
|
"packageManager": "yarn@4.2.2",
|
|
@@ -47,11 +47,5 @@
|
|
|
47
47
|
"prettier": "^3.2.5",
|
|
48
48
|
"svelte": "^4.2.17",
|
|
49
49
|
"typescript": "^5.4.5"
|
|
50
|
-
},
|
|
51
|
-
"resolutions": {
|
|
52
|
-
"globals": "^15.3.0"
|
|
53
|
-
},
|
|
54
|
-
"resolutionsComments": {
|
|
55
|
-
"globals": "This is a temporary fix for the globals package due to this issue: https://github.com/eslint/eslint/discussions/17868. Once other packages pull 15+ then should be able to remove this"
|
|
56
50
|
}
|
|
57
51
|
}
|