@crycode/eslint-config 1.1.0 → 1.2.0
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 -0
- package/eslint-config.js +0 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -48,6 +48,11 @@ module.exports = {
|
|
|
48
48
|
Placeholder for the next version (at the beginning of the line):
|
|
49
49
|
### **WORK IN PROGRESS**
|
|
50
50
|
-->
|
|
51
|
+
### 1.2.0 (2023-09-07)
|
|
52
|
+
|
|
53
|
+
* Fixed rule `@typescript-eslint/restrict-plus-operands`
|
|
54
|
+
* Updated dependencies
|
|
55
|
+
|
|
51
56
|
### 1.1.0 (2023-04-17)
|
|
52
57
|
|
|
53
58
|
* Removed deprecated `private-abstract-*` from member ordering
|
package/eslint-config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crycode/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "ESLint configuration to be used with TypeScript according to my personal preferences",
|
|
5
5
|
"main": "eslint-config.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"url": "https://github.com/crycode-de/eslint-config.git"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
30
|
-
"@typescript-eslint/parser": "^
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
30
|
+
"@typescript-eslint/parser": "^6.6.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"eslint": "^8.
|
|
33
|
+
"eslint": "^8.48.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@alcalzone/release-script": "^3.
|
|
36
|
+
"@alcalzone/release-script": "^3.6.0",
|
|
37
37
|
"@alcalzone/release-script-plugin-license": "^3.5.9",
|
|
38
38
|
"@alcalzone/release-script-plugin-manual-review": "^3.5.9"
|
|
39
39
|
}
|