@darksheep/eslint 6.6.1 → 6.6.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.6.2](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.1...v6.6.2) (2024-10-16)
4
+
5
+
6
+ ### 🩹 Fixes
7
+
8
+ * **jsx:** jsx marks variables as used ([#685](https://github.com/DarkSheepSoftware/eslint/issues/685)) ([e0e461d](https://github.com/DarkSheepSoftware/eslint/commit/e0e461d07c3517922bf3c6e9ace3665554763062))
9
+
10
+
11
+ ### 📦 Dependencies
12
+
13
+ * **pkg:** update dependency eslint-plugin-perfectionist to v3.9.0 ([#684](https://github.com/DarkSheepSoftware/eslint/issues/684)) ([9196a9c](https://github.com/DarkSheepSoftware/eslint/commit/9196a9c8a5227990d5939d66d8ca11a17c149c8d))
14
+ * **pkg:** update typescript-eslint monorepo to v8.9.0 ([#682](https://github.com/DarkSheepSoftware/eslint/issues/682)) ([0924d77](https://github.com/DarkSheepSoftware/eslint/commit/0924d774c7f4dca11462ac7db1baa124501387ac))
15
+
3
16
  ## [6.6.1](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.0...v6.6.1) (2024-10-14)
4
17
 
5
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "6.6.1",
3
+ "version": "6.6.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -26,14 +26,14 @@
26
26
  "@eslint-community/eslint-plugin-eslint-comments": "4.4.0",
27
27
  "@eslint/js": "9.12.0",
28
28
  "@stylistic/eslint-plugin": "2.9.0",
29
- "@typescript-eslint/eslint-plugin": "8.8.1",
30
- "@typescript-eslint/parser": "8.8.1",
29
+ "@typescript-eslint/eslint-plugin": "8.9.0",
30
+ "@typescript-eslint/parser": "8.9.0",
31
31
  "editorconfig": "2.0.0",
32
32
  "eslint-plugin-jsdoc": "50.4.1",
33
33
  "eslint-plugin-jsonc": "2.16.0",
34
34
  "eslint-plugin-n": "17.11.1",
35
35
  "eslint-plugin-package-json": "0.15.3",
36
- "eslint-plugin-perfectionist": "3.8.0",
36
+ "eslint-plugin-perfectionist": "3.9.0",
37
37
  "eslint-plugin-promise": "7.1.0",
38
38
  "eslint-plugin-react": "7.37.1",
39
39
  "eslint-plugin-regexp": "2.6.0",
@@ -105,6 +105,10 @@ export async function createEslintReactConfig(root) {
105
105
  jsxPragma: null,
106
106
  },
107
107
  },
108
+ plugins: { react },
109
+ rules: {
110
+ 'react/jsx-uses-vars': 'error',
111
+ },
108
112
  },
109
113
  ];
110
114
  }