standard-tsx 0.0.7 → 0.0.8
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/HISTORY.md +3 -0
- package/package.json +12 -12
package/HISTORY.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 0.0.8
|
|
2
|
+
* [chore: bump eslint dependencies to latest versions (#18)](https://github.com/extremeheat/standard-tsx/commit/59a18acfb2dab56cc26e3e32780691e99404aaee) (thanks @Copilot)
|
|
3
|
+
|
|
1
4
|
## 0.0.7
|
|
2
5
|
* [disable reportUnusedDisableDirectives](https://github.com/extremeheat/standard-tsx/commit/98e40d212ea43f3a2cc912e31d076539a4e430fb) (thanks @extremeheat)
|
|
3
6
|
* [Add linter options for ESLint configuration to skip unused flag warnings](https://github.com/extremeheat/standard-tsx/commit/1df2356ffb05f072be812d9fb61e3ff2f9639ec7) (thanks @extremeheat)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "standard-tsx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "standardjs lint with TypeScript and JSX file support (with no new typescript rules)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"standard-tsx": "file:."
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@eslint/compat": "^1.
|
|
40
|
-
"@eslint/js": "^9.
|
|
41
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
42
|
-
"@typescript-eslint/parser": "^8.
|
|
43
|
-
"eslint": "^9.
|
|
39
|
+
"@eslint/compat": "^2.1.0",
|
|
40
|
+
"@eslint/js": "^9.39.4",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^8.61.1",
|
|
42
|
+
"@typescript-eslint/parser": "^8.61.1",
|
|
43
|
+
"eslint": "^9.39.4",
|
|
44
44
|
"eslint-config-standard": "^17.1.0",
|
|
45
|
-
"eslint-plugin-eslint-env-restore": "^1.0.
|
|
46
|
-
"eslint-plugin-react": "^7.37.
|
|
47
|
-
"eslint-plugin-react-hooks": "^
|
|
45
|
+
"eslint-plugin-eslint-env-restore": "^1.0.1",
|
|
46
|
+
"eslint-plugin-react": "^7.37.5",
|
|
47
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
48
48
|
"glob": "^11.0.1",
|
|
49
|
-
"globals": "^16.
|
|
50
|
-
"typescript-eslint": "^8.
|
|
49
|
+
"globals": "^16.5.0",
|
|
50
|
+
"typescript-eslint": "^8.61.1"
|
|
51
51
|
},
|
|
52
52
|
"__comment": "We need overrides as `eslint-config-standard` depends on eslint@8 and we only need config",
|
|
53
53
|
"overrides": {
|
|
54
|
-
"eslint": "^9.
|
|
54
|
+
"eslint": "^9.39.4"
|
|
55
55
|
}
|
|
56
56
|
}
|