ecwt 0.2.5 → 0.3.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/.oxlintrc.json +17 -0
- package/.vscode/settings.json +8 -0
- package/.zed/settings.json +56 -0
- package/bun.lock +274 -513
- package/dist/main.cjs +59 -66
- package/dist/{main.d.ts → main.d.cts} +52 -68
- package/dist/main.d.mts +144 -0
- package/dist/{main.js → main.mjs} +48 -55
- package/package.json +24 -18
package/.oxlintrc.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"extends": [
|
|
4
|
+
"./node_modules/@kirick/lint/configs/oxlint/correctness.jsonc",
|
|
5
|
+
"./node_modules/@kirick/lint/configs/oxlint/eslint.jsonc",
|
|
6
|
+
"./node_modules/@kirick/lint/configs/oxlint/jsdoc.jsonc",
|
|
7
|
+
"./node_modules/@kirick/lint/configs/oxlint/node.jsonc",
|
|
8
|
+
"./node_modules/@kirick/lint/configs/oxlint/pedantic.jsonc",
|
|
9
|
+
"./node_modules/@kirick/lint/configs/oxlint/perf.jsonc",
|
|
10
|
+
"./node_modules/@kirick/lint/configs/oxlint/promise.jsonc",
|
|
11
|
+
"./node_modules/@kirick/lint/configs/oxlint/restriction.jsonc",
|
|
12
|
+
"./node_modules/@kirick/lint/configs/oxlint/style.jsonc",
|
|
13
|
+
"./node_modules/@kirick/lint/configs/oxlint/suspicious.jsonc",
|
|
14
|
+
"./node_modules/@kirick/lint/configs/oxlint/typescript.jsonc"
|
|
15
|
+
],
|
|
16
|
+
"ignorePatterns": ["dist"]
|
|
17
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"languages": {
|
|
3
|
+
"JavaScript": {
|
|
4
|
+
"format_on_save": "on",
|
|
5
|
+
"formatter": [
|
|
6
|
+
{ "language_server": { "name": "biome" } },
|
|
7
|
+
{ "code_action": "source.organizeImports.biome" },
|
|
8
|
+
{ "code_action": "source.fixAll.biome" }
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"TypeScript": {
|
|
12
|
+
"format_on_save": "on",
|
|
13
|
+
"formatter": [
|
|
14
|
+
{ "language_server": { "name": "biome" } },
|
|
15
|
+
{ "code_action": "source.organizeImports.biome" },
|
|
16
|
+
{ "code_action": "source.fixAll.biome" }
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"TSX": {
|
|
20
|
+
"format_on_save": "on",
|
|
21
|
+
"formatter": [
|
|
22
|
+
{ "language_server": { "name": "biome" } },
|
|
23
|
+
{ "code_action": "source.organizeImports.biome" },
|
|
24
|
+
{ "code_action": "source.fixAll.biome" }
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"JSON": {
|
|
28
|
+
"format_on_save": "on",
|
|
29
|
+
"formatter": [{ "language_server": { "name": "biome" } }]
|
|
30
|
+
},
|
|
31
|
+
"JSONC": {
|
|
32
|
+
"format_on_save": "on",
|
|
33
|
+
"formatter": [{ "language_server": { "name": "biome" } }]
|
|
34
|
+
},
|
|
35
|
+
"CSS": {
|
|
36
|
+
"format_on_save": "on",
|
|
37
|
+
"formatter": [{ "language_server": { "name": "biome" } }]
|
|
38
|
+
},
|
|
39
|
+
"HTML": {
|
|
40
|
+
"format_on_save": "on",
|
|
41
|
+
"formatter": [
|
|
42
|
+
{ "language_server": { "name": "biome" } },
|
|
43
|
+
{ "code_action": "source.organizeImports.biome" },
|
|
44
|
+
{ "code_action": "source.fixAll.biome" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"Vue.js": {
|
|
48
|
+
"format_on_save": "on",
|
|
49
|
+
"formatter": [
|
|
50
|
+
{ "language_server": { "name": "biome" } },
|
|
51
|
+
{ "code_action": "source.organizeImports.biome" },
|
|
52
|
+
{ "code_action": "source.fixAll.biome" }
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|