@d-kuehn/eslint-config 32.0.1 → 32.1.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 +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ export default combine(
|
|
|
53
53
|
| Configuration | Purpose | Targeted Files |
|
|
54
54
|
| ------------------------------------------------------------------------------------------------ | ------------------------------------------- | ------------------------------------------------- |
|
|
55
55
|
| [defaults() v9.39.2](https://github.com/eslint/eslint) | Base ESLint rules for JS/TS projects | All JavaScript/TypeScript files, `.vue` |
|
|
56
|
-
| [typescript() v8.50.
|
|
56
|
+
| [typescript() v8.50.1](https://github.com/typescript-eslint/typescript-eslint) | TypeScript-specific rules and type checking | `.ts`, `.tsx`, `.mts`, `.cts`, `.vue` |
|
|
57
57
|
| [stylistic() v5.6.1](https://github.com/eslint-stylistic/eslint-stylistic) | Code style and formatting rules | All JavaScript/TypeScript files, `.vue`, `.astro` |
|
|
58
58
|
|
|
59
59
|
### Feature-specific Configurations
|
|
@@ -82,9 +82,9 @@ export default combine(
|
|
|
82
82
|
|
|
83
83
|
| Configuration | Purpose | Targeted Files |
|
|
84
84
|
| ---------------------------------------------------------------------------------------------------------------------- | --------------------------- | --------------------------------------------------- |
|
|
85
|
-
| [vitest() v1.
|
|
85
|
+
| [vitest() v1.6.3](https://github.com/vitest-dev/eslint-plugin-vitest) | Vitest test rules | `**/*.{spec,test,bench,benchmark}.?([cm])[jt]s?(x)` |
|
|
86
86
|
| [playwright() v2.4.0](https://github.com/playwright-community/eslint-plugin-playwright) | Playwright E2E test rules | `tests/e2e/**`, `**/*.e2e.?([cm])[jt]s?(x)` |
|
|
87
|
-
| [testingLibrary() v7.15.
|
|
87
|
+
| [testingLibrary() v7.15.3](https://github.com/testing-library/eslint-plugin-testing-library) | Testing Library with Vue.js | `**/*.{spec,test,bench,benchmark}.?([cm])[jt]s?(x)` |
|
|
88
88
|
|
|
89
89
|
## Configuration Options
|
|
90
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-kuehn/eslint-config",
|
|
3
|
-
"version": "32.0
|
|
3
|
+
"version": "32.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"@eslint/js": "9.39.2",
|
|
32
32
|
"@stylistic/eslint-plugin": "5.6.1",
|
|
33
33
|
"@types/eslint-plugin-jsx-a11y": "6.10.1",
|
|
34
|
-
"@typescript-eslint/parser": "8.50.
|
|
35
|
-
"@vitest/eslint-plugin": "1.
|
|
34
|
+
"@typescript-eslint/parser": "8.50.1",
|
|
35
|
+
"@vitest/eslint-plugin": "1.6.3",
|
|
36
36
|
"@vue/eslint-config-typescript": "14.6.0",
|
|
37
37
|
"astro-eslint-parser": "^1.2.2",
|
|
38
38
|
"eslint": "9.39.2",
|
|
@@ -47,19 +47,19 @@
|
|
|
47
47
|
"eslint-plugin-playwright": "2.4.0",
|
|
48
48
|
"eslint-plugin-regexp": "2.10.0",
|
|
49
49
|
"eslint-plugin-storybook": "10.1.10",
|
|
50
|
-
"eslint-plugin-testing-library": "7.15.
|
|
50
|
+
"eslint-plugin-testing-library": "7.15.3",
|
|
51
51
|
"eslint-plugin-unicorn": "62.0.0",
|
|
52
52
|
"eslint-plugin-vue": "10.6.2",
|
|
53
53
|
"eslint-plugin-vuejs-accessibility": "2.4.1",
|
|
54
54
|
"globals": "16.5.0",
|
|
55
55
|
"jsonc-eslint-parser": "2.4.2",
|
|
56
|
-
"typescript-eslint": "8.50.
|
|
56
|
+
"typescript-eslint": "8.50.1",
|
|
57
57
|
"vue-eslint-parser": "10.2.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/eslint-plugin-jsx-a11y": "6.10.1",
|
|
61
61
|
"@types/node": "24.10.4",
|
|
62
|
-
"@typescript-eslint/utils": "8.50.
|
|
62
|
+
"@typescript-eslint/utils": "8.50.1",
|
|
63
63
|
"tsdown": "0.15.12",
|
|
64
64
|
"typescript": "5.9.3"
|
|
65
65
|
},
|