@darksheep/eslint 4.4.9 → 4.4.11
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 +19 -0
- package/package.json +7 -7
- package/src/plugins/sonarjs.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.4.11](https://github.com/DarkSheepSoftware/eslint/compare/v4.4.10...v4.4.11) (2024-05-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Fixes
|
|
7
|
+
|
|
8
|
+
* Prevent "no-duplicate-string" in "tests" ([#433](https://github.com/DarkSheepSoftware/eslint/issues/433)) ([5613861](https://github.com/DarkSheepSoftware/eslint/commit/5613861e32923c09b1cb099a97c256f1d3f25bb2))
|
|
9
|
+
|
|
10
|
+
## [4.4.10](https://github.com/DarkSheepSoftware/eslint/compare/v4.4.9...v4.4.10) (2024-05-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 📦 Dependencies
|
|
14
|
+
|
|
15
|
+
* **lock:** lock file maintenance ([#430](https://github.com/DarkSheepSoftware/eslint/issues/430)) ([41b5d02](https://github.com/DarkSheepSoftware/eslint/commit/41b5d02f1f78b41ff9a2a8d2fe0b6f5ea8791251))
|
|
16
|
+
* **pkg:** update dependency @eslint/eslintrc to v3.1.0 ([#428](https://github.com/DarkSheepSoftware/eslint/issues/428)) ([919d392](https://github.com/DarkSheepSoftware/eslint/commit/919d392a36da39eb4af165f69d5d1bde97dc3ecd))
|
|
17
|
+
* **pkg:** update dependency @eslint/js to v9.3.0 ([#429](https://github.com/DarkSheepSoftware/eslint/issues/429)) ([ecf3056](https://github.com/DarkSheepSoftware/eslint/commit/ecf305656a1ae5fe44be3da333a0e9a4e13c70f5))
|
|
18
|
+
* **pkg:** update dependency eslint-plugin-jsdoc to v48.2.5 ([#426](https://github.com/DarkSheepSoftware/eslint/issues/426)) ([cd255a7](https://github.com/DarkSheepSoftware/eslint/commit/cd255a7330e63eea63d11a6b00f976b17ddccba6))
|
|
19
|
+
* **pkg:** update dependency eslint-plugin-regexp to v2.6.0 ([#432](https://github.com/DarkSheepSoftware/eslint/issues/432)) ([b82e455](https://github.com/DarkSheepSoftware/eslint/commit/b82e45508f202601e9ebb77bbb3b199feef0c370))
|
|
20
|
+
* **pkg:** update typescript-eslint monorepo to v7.10.0 ([#431](https://github.com/DarkSheepSoftware/eslint/issues/431)) ([96cde01](https://github.com/DarkSheepSoftware/eslint/commit/96cde01c29362d0541f45d83bb7fbc350012d3eb))
|
|
21
|
+
|
|
3
22
|
## [4.4.9](https://github.com/DarkSheepSoftware/eslint/compare/v4.4.8...v4.4.9) (2024-05-14)
|
|
4
23
|
|
|
5
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@darksheep/eslint",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.11",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/DarkSheepSoftware/eslint"
|
|
@@ -23,22 +23,22 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@eslint-community/eslint-plugin-eslint-comments": "4.3.0",
|
|
26
|
-
"@eslint/eslintrc": "3.0
|
|
27
|
-
"@eslint/js": "9.
|
|
26
|
+
"@eslint/eslintrc": "3.1.0",
|
|
27
|
+
"@eslint/js": "9.3.0",
|
|
28
28
|
"@stylistic/eslint-plugin": "2.1.0",
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
30
|
-
"@typescript-eslint/parser": "7.
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "7.10.0",
|
|
30
|
+
"@typescript-eslint/parser": "7.10.0",
|
|
31
31
|
"editorconfig": "2.0.0",
|
|
32
32
|
"eslint": "8.57.0",
|
|
33
33
|
"eslint-plugin-jest": "28.5.0",
|
|
34
|
-
"eslint-plugin-jsdoc": "48.2.
|
|
34
|
+
"eslint-plugin-jsdoc": "48.2.5",
|
|
35
35
|
"eslint-plugin-jsonc": "2.15.1",
|
|
36
36
|
"eslint-plugin-jsx-a11y": "6.8.0",
|
|
37
37
|
"eslint-plugin-n": "17.7.0",
|
|
38
38
|
"eslint-plugin-package-json": "0.13.1",
|
|
39
39
|
"eslint-plugin-promise": "6.1.1",
|
|
40
40
|
"eslint-plugin-react": "7.34.1",
|
|
41
|
-
"eslint-plugin-regexp": "2.
|
|
41
|
+
"eslint-plugin-regexp": "2.6.0",
|
|
42
42
|
"eslint-plugin-security": "3.0.0",
|
|
43
43
|
"eslint-plugin-sonarjs": "1.0.3",
|
|
44
44
|
"eslint-plugin-unicorn": "53.0.0",
|