ultracite 7.3.0 → 7.3.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 +4 -0
- package/config/biome/core/biome.jsonc +9 -16
- package/config/biome/jest/biome.jsonc +21 -0
- package/config/biome/type-aware/biome.jsonc +19 -0
- package/config/biome/vitest/biome.jsonc +21 -0
- package/config/eslint/angular/eslint.config.mjs +1 -0
- package/config/eslint/astro/eslint.config.mjs +1 -0
- package/config/eslint/astro/rules/astro.mjs +1 -3
- package/config/eslint/core/eslint.config.mjs +21 -38
- package/config/eslint/core/rules/eslint-typescript.mjs +1 -1
- package/config/eslint/core/rules/eslint.mjs +1 -1
- package/config/eslint/core/rules/import.mjs +17 -17
- package/config/eslint/core/rules/n.mjs +2 -2
- package/config/eslint/core/rules/storybook.mjs +1 -3
- package/config/eslint/core/rules/typescript.mjs +20 -21
- package/config/eslint/core/rules/unicorn.mjs +2 -2
- package/config/eslint/jest/eslint.config.mjs +25 -0
- package/config/eslint/next/eslint.config.mjs +1 -0
- package/config/eslint/qwik/eslint.config.mjs +1 -0
- package/config/eslint/react/eslint.config.mjs +4 -3
- package/config/eslint/react/rules/jsx-a11y.mjs +2 -2
- package/config/eslint/react/rules/query.mjs +1 -3
- package/config/eslint/react/rules/react.mjs +7 -7
- package/config/eslint/remix/eslint.config.mjs +1 -0
- package/config/eslint/solid/eslint.config.mjs +1 -0
- package/config/eslint/svelte/eslint.config.mjs +1 -0
- package/config/eslint/vitest/eslint.config.mjs +19 -0
- package/config/eslint/vitest/rules/vitest.mjs +36 -0
- package/config/eslint/vue/eslint.config.mjs +1 -0
- package/config/oxlint/core/.oxlintrc.json +7 -65
- package/config/oxlint/jest/.oxlintrc.json +74 -0
- package/config/oxlint/vitest/.oxlintrc.json +65 -0
- package/config/prettier/prettier.config.mjs +6 -6
- package/config/stylelint/stylelint.config.mjs +3 -3
- package/dist/index.js +114 -114
- package/package.json +36 -35
- /package/config/eslint/{core → jest}/rules/jest.mjs +0 -0
package/package.json
CHANGED
|
@@ -1,8 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultracite",
|
|
3
|
+
"version": "7.3.2",
|
|
3
4
|
"description": "The AI-ready formatter that helps you write and generate code faster.",
|
|
4
|
-
"
|
|
5
|
-
|
|
5
|
+
"keywords": [
|
|
6
|
+
"biome",
|
|
7
|
+
"fixer",
|
|
8
|
+
"formatter",
|
|
9
|
+
"linter",
|
|
10
|
+
"ultracite"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://www.ultracite.ai/",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/haydenbleasel/ultracite/issues"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "Hayden Bleasel <hello@haydenbleasel.com>",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/haydenbleasel/ultracite.git"
|
|
21
|
+
},
|
|
6
22
|
"bin": {
|
|
7
23
|
"ultracite": "dist/index.js"
|
|
8
24
|
},
|
|
@@ -12,11 +28,7 @@
|
|
|
12
28
|
"dist/index.d.ts",
|
|
13
29
|
"README.md"
|
|
14
30
|
],
|
|
15
|
-
"
|
|
16
|
-
"build": "tsup",
|
|
17
|
-
"test": "bun test",
|
|
18
|
-
"test:coverage": "bun test --coverage"
|
|
19
|
-
},
|
|
31
|
+
"type": "module",
|
|
20
32
|
"exports": {
|
|
21
33
|
"./biome/*": "./config/biome/*/biome.jsonc",
|
|
22
34
|
"./eslint/*": "./config/eslint/*/eslint.config.mjs",
|
|
@@ -25,29 +37,25 @@
|
|
|
25
37
|
"./stylelint": "./config/stylelint/stylelint.config.mjs",
|
|
26
38
|
"./*": "./config/biome/*/biome.jsonc"
|
|
27
39
|
},
|
|
28
|
-
"author": "Hayden Bleasel <hello@haydenbleasel.com>",
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/haydenbleasel/ultracite/issues"
|
|
31
|
-
},
|
|
32
|
-
"homepage": "https://www.ultracite.ai/",
|
|
33
|
-
"keywords": [
|
|
34
|
-
"ultracite",
|
|
35
|
-
"biome",
|
|
36
|
-
"linter",
|
|
37
|
-
"formatter",
|
|
38
|
-
"fixer"
|
|
39
|
-
],
|
|
40
|
-
"license": "MIT",
|
|
41
40
|
"publishConfig": {
|
|
42
41
|
"access": "public",
|
|
43
42
|
"registry": "https://registry.npmjs.org/"
|
|
44
43
|
},
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"test": "bun test",
|
|
47
|
+
"test:coverage": "bun test --coverage"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@clack/prompts": "^1.1.0",
|
|
51
|
+
"commander": "^14.0.3",
|
|
52
|
+
"deepmerge": "^4.3.1",
|
|
53
|
+
"glob": "^13.0.6",
|
|
54
|
+
"jsonc-parser": "^3.3.1",
|
|
55
|
+
"nypm": "^0.6.5"
|
|
48
56
|
},
|
|
49
57
|
"devDependencies": {
|
|
50
|
-
"@biomejs/biome": "2.4.
|
|
58
|
+
"@biomejs/biome": "2.4.7",
|
|
51
59
|
"@eslint/js": "^10.0.1",
|
|
52
60
|
"@next/eslint-plugin-next": "^16.1.6",
|
|
53
61
|
"@repo/data": "workspace:*",
|
|
@@ -55,6 +63,7 @@
|
|
|
55
63
|
"@types/node": "^25.3.3",
|
|
56
64
|
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
57
65
|
"@typescript-eslint/parser": "^8.56.1",
|
|
66
|
+
"@vitest/eslint-plugin": "^1.6.12",
|
|
58
67
|
"eslint-config-prettier": "^10.1.8",
|
|
59
68
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
60
69
|
"eslint-plugin-angular": "^5.0.0",
|
|
@@ -63,7 +72,7 @@
|
|
|
63
72
|
"eslint-plugin-cypress": "^6.1.0",
|
|
64
73
|
"eslint-plugin-github": "6.0.0",
|
|
65
74
|
"eslint-plugin-html": "^8.1.4",
|
|
66
|
-
"eslint-plugin-import": "^
|
|
75
|
+
"eslint-plugin-import-x": "^4.12.2",
|
|
67
76
|
"eslint-plugin-jest": "^29.15.0",
|
|
68
77
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
69
78
|
"eslint-plugin-n": "^17.24.0",
|
|
@@ -81,20 +90,12 @@
|
|
|
81
90
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
82
91
|
"eslint-plugin-vue": "^10.8.0",
|
|
83
92
|
"globals": "^17.4.0",
|
|
93
|
+
"oxlint": "^1.51.0",
|
|
84
94
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
85
95
|
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
86
96
|
"stylelint-config-standard": "^40.0.0",
|
|
87
97
|
"stylelint-prettier": "^5.0.3",
|
|
88
|
-
"tsup": "^8.5.1"
|
|
89
|
-
"oxlint": "^1.51.0"
|
|
90
|
-
},
|
|
91
|
-
"dependencies": {
|
|
92
|
-
"@clack/prompts": "^1.1.0",
|
|
93
|
-
"commander": "^14.0.3",
|
|
94
|
-
"deepmerge": "^4.3.1",
|
|
95
|
-
"glob": "^13.0.6",
|
|
96
|
-
"jsonc-parser": "^3.3.1",
|
|
97
|
-
"nypm": "^0.6.5"
|
|
98
|
+
"tsup": "^8.5.1"
|
|
98
99
|
},
|
|
99
100
|
"peerDependencies": {
|
|
100
101
|
"oxlint": "^1.0.0"
|
|
File without changes
|