ultracite 7.8.4 → 7.9.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 +2 -3
- package/config/biome/core/biome.jsonc +65 -4
- package/config/biome/next/biome.jsonc +3 -1
- package/config/biome/react/biome.jsonc +1 -0
- package/config/biome/vue/biome.jsonc +22 -2
- package/config/eslint/astro/rules/astro.mjs +4 -1
- package/config/eslint/core/eslint.config.mjs +9 -0
- package/config/eslint/core/rules/eslint-typescript.mjs +0 -2
- package/config/eslint/core/rules/eslint.mjs +15 -1
- package/config/eslint/core/rules/github.mjs +4 -0
- package/config/eslint/core/rules/import.mjs +10 -1
- package/config/eslint/core/rules/jsdoc.mjs +31 -0
- package/config/eslint/core/rules/n.mjs +5 -0
- package/config/eslint/core/rules/promise.mjs +6 -1
- package/config/eslint/core/rules/sonarjs.mjs +17 -0
- package/config/eslint/core/rules/typescript.mjs +12 -1
- package/config/eslint/core/rules/unicorn.mjs +21 -5
- package/config/eslint/next/eslint.config.mjs +4 -0
- package/config/eslint/next/rules/react-doctor.mjs +27 -0
- package/config/eslint/react/eslint.config.mjs +20 -1
- package/config/eslint/react/rules/react-doctor.mjs +153 -0
- package/config/eslint/react/rules/react.mjs +7 -6
- package/config/eslint/svelte/rules/svelte.mjs +9 -2
- package/config/eslint/tanstack/eslint.config.mjs +4 -0
- package/config/eslint/tanstack/rules/react-doctor.mjs +25 -0
- package/config/eslint/vue/eslint.config.mjs +9 -0
- package/config/oxlint/core/index.mjs +10 -3
- package/config/oxlint/github/index.d.mts +5 -0
- package/config/oxlint/github/index.mjs +36 -0
- package/config/oxlint/next/index.mjs +53 -1
- package/config/oxlint/react/index.mjs +245 -2
- package/config/oxlint/sonarjs/index.d.mts +5 -0
- package/config/oxlint/sonarjs/index.mjs +207 -0
- package/config/oxlint/tanstack/index.mjs +26 -1
- package/config/oxlint/vue/index.mjs +3 -0
- package/dist/index.js +64 -100
- package/package.json +24 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultracite",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.0",
|
|
4
4
|
"description": "The AI-ready formatter that helps you write and generate code faster.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"biome",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@clack/prompts": "^1.5.1",
|
|
59
|
+
"@typescript-eslint/utils": "^8.62.1",
|
|
59
60
|
"commander": "^15.0.0",
|
|
60
61
|
"cross-spawn": "^7.0.6",
|
|
61
62
|
"deepmerge": "^4.3.1",
|
|
@@ -67,46 +68,49 @@
|
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
70
|
"@angular-eslint/eslint-plugin": "^22.0.0",
|
|
70
|
-
"@biomejs/biome": "2.
|
|
71
|
-
"@darraghor/eslint-plugin-nestjs-typed": "^7.2.
|
|
72
|
-
"@eslint/js": "^10.0.
|
|
73
|
-
"@next/eslint-plugin-next": "^16.2.
|
|
74
|
-
"@
|
|
75
|
-
"@tanstack/eslint-plugin-query": "^5.101.0",
|
|
71
|
+
"@biomejs/biome": "2.5.2",
|
|
72
|
+
"@darraghor/eslint-plugin-nestjs-typed": "^7.2.5",
|
|
73
|
+
"@eslint/js": "^10.0.0",
|
|
74
|
+
"@next/eslint-plugin-next": "^16.2.10",
|
|
75
|
+
"@tanstack/eslint-plugin-query": "^5.101.2",
|
|
76
76
|
"@tanstack/eslint-plugin-router": "^1.162.0",
|
|
77
77
|
"@tanstack/eslint-plugin-start": "^0.1.0",
|
|
78
78
|
"@types/bun": "^1.3.14",
|
|
79
79
|
"@types/cross-spawn": "^6.0.6",
|
|
80
80
|
"@types/node": "^25.9.2",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
82
|
-
"@typescript-eslint/parser": "^8.
|
|
83
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^8.62.1",
|
|
82
|
+
"@typescript-eslint/parser": "^8.62.1",
|
|
83
|
+
"@vitest/eslint-plugin": "^1.6.21",
|
|
84
|
+
"eslint": "^10.0.0",
|
|
84
85
|
"eslint-config-prettier": "^10.1.8",
|
|
85
86
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
86
|
-
"eslint-plugin-astro": "^1.
|
|
87
|
+
"eslint-plugin-astro": "^2.1.1",
|
|
87
88
|
"eslint-plugin-compat": "^7.0.2",
|
|
88
|
-
"eslint-plugin-cypress": "^6.4.
|
|
89
|
+
"eslint-plugin-cypress": "^6.4.2",
|
|
89
90
|
"eslint-plugin-github": "6.0.0",
|
|
90
91
|
"eslint-plugin-html": "^8.1.4",
|
|
91
|
-
"eslint-plugin-import-x": "^4.
|
|
92
|
-
"eslint-plugin-jest": "^29.15.
|
|
92
|
+
"eslint-plugin-import-x": "^4.17.1",
|
|
93
|
+
"eslint-plugin-jest": "^29.15.4",
|
|
94
|
+
"eslint-plugin-jsdoc": "^63.0.11",
|
|
93
95
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
94
|
-
"eslint-plugin-n": "^18.
|
|
96
|
+
"eslint-plugin-n": "^18.2.1",
|
|
95
97
|
"eslint-plugin-prettier": "^5.5.6",
|
|
96
98
|
"eslint-plugin-promise": "^7.3.0",
|
|
97
99
|
"eslint-plugin-qwik": "^1.20.0",
|
|
98
100
|
"eslint-plugin-react": "^7.37.5",
|
|
101
|
+
"eslint-plugin-react-doctor": "^0.7.1",
|
|
99
102
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
100
103
|
"eslint-plugin-remix": "^1.1.1",
|
|
101
104
|
"eslint-plugin-solid": "^0.14.5",
|
|
102
|
-
"eslint-plugin-sonarjs": "^4.0
|
|
103
|
-
"eslint-plugin-storybook": "^10.4.
|
|
104
|
-
"eslint-plugin-svelte": "^3.
|
|
105
|
-
"eslint-plugin-unicorn": "^
|
|
105
|
+
"eslint-plugin-sonarjs": "^4.1.0",
|
|
106
|
+
"eslint-plugin-storybook": "^10.4.6",
|
|
107
|
+
"eslint-plugin-svelte": "^3.20.0",
|
|
108
|
+
"eslint-plugin-unicorn": "^70.0.0",
|
|
106
109
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
107
110
|
"eslint-plugin-vue": "^10.9.2",
|
|
108
|
-
"globals": "^17.
|
|
111
|
+
"globals": "^17.7.0",
|
|
109
112
|
"oxlint": "^1.68.0",
|
|
113
|
+
"oxlint-plugin-react-doctor": "^0.7.1",
|
|
110
114
|
"prettier-plugin-astro": "^0.14.1",
|
|
111
115
|
"prettier-plugin-svelte": "^4.1.0",
|
|
112
116
|
"prettier-plugin-tailwindcss": "^0.8.0",
|