@crycode/eslint-config 2.2.0 → 2.2.1
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 +5 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -59,6 +59,10 @@ If you habe multiple tsconfig files, add them all to `project` array:
|
|
|
59
59
|
Placeholder for the next version (at the beginning of the line):
|
|
60
60
|
### **WORK IN PROGRESS**
|
|
61
61
|
-->
|
|
62
|
+
### 2.2.1 (2025-05-02)
|
|
63
|
+
|
|
64
|
+
* Updated to latest `eslint` and `typescript-eslint`
|
|
65
|
+
|
|
62
66
|
### 2.2.0 (2024-11-27)
|
|
63
67
|
|
|
64
68
|
* Updated rule options for `@typescript-eslint/switch-exhaustiveness-check`
|
|
@@ -128,7 +132,7 @@ If you habe multiple tsconfig files, add them all to `project` array:
|
|
|
128
132
|
|
|
129
133
|
MIT License
|
|
130
134
|
|
|
131
|
-
Copyright (c) 2021-
|
|
135
|
+
Copyright (c) 2021-2025 Peter Müller <peter@crycode.de>
|
|
132
136
|
|
|
133
137
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
134
138
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crycode/eslint-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "ESLint configuration to be used with JavaScript or TypeScript according to my personal preferences",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -32,19 +32,18 @@
|
|
|
32
32
|
"url": "https://github.com/crycode-de/eslint-config.git"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@eslint/js": "^9.
|
|
36
|
-
"@stylistic/eslint-plugin": "^2.
|
|
37
|
-
"@stylistic/eslint-plugin-js": "^2.
|
|
38
|
-
"@types/eslint__js": "^8.42.3"
|
|
35
|
+
"@eslint/js": "^9.25.1",
|
|
36
|
+
"@stylistic/eslint-plugin": "^4.2.0",
|
|
37
|
+
"@stylistic/eslint-plugin-js": "^4.2.0"
|
|
39
38
|
},
|
|
40
39
|
"peerDependencies": {
|
|
41
|
-
"eslint": "^9.
|
|
42
|
-
"typescript-eslint": "^8.
|
|
40
|
+
"eslint": "^9.25.1",
|
|
41
|
+
"typescript-eslint": "^8.31.1"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
45
44
|
"@alcalzone/release-script": "^3.8.0",
|
|
46
45
|
"@alcalzone/release-script-plugin-license": "^3.7.0",
|
|
47
46
|
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
|
|
48
|
-
"eslint": "^9.
|
|
47
|
+
"eslint": "^9.25.1"
|
|
49
48
|
}
|
|
50
49
|
}
|