@crycode/eslint-config 2.1.0 → 2.1.2

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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.d.ts +1 -1
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -59,6 +59,15 @@ 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.1.2 (2024-10-16)
63
+
64
+ * Fixed TS types
65
+ * Updated to latest `eslint` and `typescript-eslint`
66
+
67
+ ### 2.1.1 (2024-09-13)
68
+
69
+ * Updated to latest `eslint` and `typescript-eslint` version
70
+
62
71
  ### 2.1.0 (2024-09-01)
63
72
 
64
73
  * TypeScript config now uses type checked rules
package/index.d.ts CHANGED
@@ -8,4 +8,4 @@ declare const crycode: {
8
8
  };
9
9
  };
10
10
 
11
- export = crycode;
11
+ export default crycode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crycode/eslint-config",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
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,19 @@
32
32
  "url": "https://github.com/crycode-de/eslint-config.git"
33
33
  },
34
34
  "dependencies": {
35
- "@eslint/js": "^9.9.1",
36
- "@stylistic/eslint-plugin": "^2.7.2",
37
- "@stylistic/eslint-plugin-js": "^2.7.2",
35
+ "@eslint/js": "^9.12.0",
36
+ "@stylistic/eslint-plugin": "^2.9.0",
37
+ "@stylistic/eslint-plugin-js": "^2.9.0",
38
38
  "@types/eslint__js": "^8.42.3"
39
39
  },
40
40
  "peerDependencies": {
41
- "eslint": "^9.9.1",
42
- "typescript-eslint": "^8.3.0"
41
+ "eslint": "^9.12.0",
42
+ "typescript-eslint": "^8.9.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@alcalzone/release-script": "^3.8.0",
46
46
  "@alcalzone/release-script-plugin-license": "^3.7.0",
47
47
  "@alcalzone/release-script-plugin-manual-review": "^3.7.0",
48
- "eslint": "^9.9.1"
48
+ "eslint": "^9.12.0"
49
49
  }
50
50
  }