@d-kuehn/eslint-config 31.12.2 → 32.0.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/README.md +6 -6
- package/dist/index.js +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -52,8 +52,8 @@ export default combine(
|
|
|
52
52
|
|
|
53
53
|
| Configuration | Purpose | Targeted Files |
|
|
54
54
|
| ------------------------------------------------------------------------------------------------ | ------------------------------------------- | ------------------------------------------------- |
|
|
55
|
-
| [defaults() v9.39.
|
|
56
|
-
| [typescript() v8.
|
|
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.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
|
|
@@ -66,7 +66,7 @@ export default combine(
|
|
|
66
66
|
| [jsonc() v2.21.0](https://github.com/ota-meshi/eslint-plugin-jsonc) | JSON validation and formatting | `.json`, `.jsonc`, `.json5` |
|
|
67
67
|
| [regexp() v2.10.0](https://github.com/ota-meshi/eslint-plugin-regexp) | Regular expressions validation | All JavaScript/TypeScript files, `.vue` |
|
|
68
68
|
| [unicorn() v62.0.0](https://github.com/sindresorhus/eslint-plugin-unicorn) | Additional JavaScript rules | All JavaScript/TypeScript files, `.vue`, `.astro` |
|
|
69
|
-
| [perfectionist()
|
|
69
|
+
| [perfectionist() v5.0.0](https://github.com/azat-io/eslint-plugin-perfectionist) | Consistent code organization | All JavaScript/TypeScript files, `.vue` |
|
|
70
70
|
|
|
71
71
|
### Framework Support
|
|
72
72
|
|
|
@@ -75,16 +75,16 @@ export default combine(
|
|
|
75
75
|
| [astro() v1.5.0](https://github.com/ota-meshi/eslint-plugin-astro) | Astro rules | `.astro` |
|
|
76
76
|
| [vue() v10.6.2](https://github.com/vuejs/eslint-plugin-vue) | Vue.js rules | `.vue` |
|
|
77
77
|
| [vueAccessibility() v2.4.1](https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility) | Vue.js accessibility | `.vue` |
|
|
78
|
-
| [storybook() v10.1.
|
|
78
|
+
| [storybook() v10.1.10](https://github.com/storybookjs/eslint-plugin-storybook) | Storybook rules | `**/*.stories.{ts,tsx,js,jsx,mjs,cjs}` |
|
|
79
79
|
| [betterTailwindCss() v3.8.0](https://github.com/schoero/eslint-plugin-better-tailwindcss) - Tailwind CSS v3, v4 | Tailwind CSS usage | `.vue`, `.js`, `.ts`, `.jsx`, `.tsx`, `.astro` |
|
|
80
80
|
|
|
81
81
|
### Testing Configurations
|
|
82
82
|
|
|
83
83
|
| Configuration | Purpose | Targeted Files |
|
|
84
84
|
| ---------------------------------------------------------------------------------------------------------------------- | --------------------------- | --------------------------------------------------- |
|
|
85
|
-
| [vitest() v1.5.
|
|
85
|
+
| [vitest() v1.5.4](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.
|
|
87
|
+
| [testingLibrary() v7.15.1](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/dist/index.js
CHANGED
|
@@ -673,7 +673,7 @@ const perfectionist = async (options = {}) => {
|
|
|
673
673
|
rules: {
|
|
674
674
|
...pluginPerfectionist.configs["recommended-natural"].rules,
|
|
675
675
|
"perfectionist/sort-array-includes": ["error", {
|
|
676
|
-
|
|
676
|
+
groups: ["literal"],
|
|
677
677
|
ignoreCase: false,
|
|
678
678
|
order: "asc",
|
|
679
679
|
type: "natural"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-kuehn/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@eslint/compat": "2.0.0",
|
|
31
|
-
"@eslint/js": "9.39.
|
|
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.
|
|
35
|
-
"@vitest/eslint-plugin": "1.5.
|
|
34
|
+
"@typescript-eslint/parser": "8.50.1",
|
|
35
|
+
"@vitest/eslint-plugin": "1.5.4",
|
|
36
36
|
"@vue/eslint-config-typescript": "14.6.0",
|
|
37
37
|
"astro-eslint-parser": "^1.2.2",
|
|
38
|
-
"eslint": "9.39.
|
|
38
|
+
"eslint": "9.39.2",
|
|
39
39
|
"eslint-flat-config-utils": "2.1.4",
|
|
40
40
|
"eslint-plugin-astro": "1.5.0",
|
|
41
41
|
"eslint-plugin-better-tailwindcss": "3.8.0",
|
|
@@ -43,23 +43,23 @@
|
|
|
43
43
|
"eslint-plugin-jsdoc": "61.5.0",
|
|
44
44
|
"eslint-plugin-jsonc": "2.21.0",
|
|
45
45
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
46
|
-
"eslint-plugin-perfectionist": "
|
|
46
|
+
"eslint-plugin-perfectionist": "5.0.0",
|
|
47
47
|
"eslint-plugin-playwright": "2.4.0",
|
|
48
48
|
"eslint-plugin-regexp": "2.10.0",
|
|
49
|
-
"eslint-plugin-storybook": "10.1.
|
|
50
|
-
"eslint-plugin-testing-library": "7.
|
|
49
|
+
"eslint-plugin-storybook": "10.1.10",
|
|
50
|
+
"eslint-plugin-testing-library": "7.15.1",
|
|
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.
|
|
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
|
-
"@types/node": "24.10.
|
|
62
|
-
"@typescript-eslint/utils": "8.
|
|
61
|
+
"@types/node": "24.10.4",
|
|
62
|
+
"@typescript-eslint/utils": "8.50.1",
|
|
63
63
|
"tsdown": "0.15.12",
|
|
64
64
|
"typescript": "5.9.3"
|
|
65
65
|
},
|