Skip to content

Commit 1884ec3

Browse files
committed
using vitest and doming some big refactor
1 parent fc0d399 commit 1884ec3

File tree

20 files changed

+2365
-1293
lines changed

20 files changed

+2365
-1293
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Vitest Current File",
11+
"program": "${workspaceFolder}/node_modules/.bin/vitest",
12+
"args": ["run", "${file}"],
13+
"console": "integratedTerminal",
14+
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
15+
}
16+
]
17+
}

biome.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@
33
"organizeImports": {
44
"enabled": true
55
},
6+
7+
"files": {
8+
"ignore": ["_tests/**/*.json", "launch.json"]
9+
},
10+
611
"formatter": {
712
"enabled": true,
813
"indentStyle": "space",
914
"lineWidth": 120
1015
},
16+
1117
"linter": {
1218
"enabled": true,
1319
"rules": {
@@ -21,6 +27,7 @@
2127
}
2228
}
2329
},
30+
2431
"javascript": {
2532
"formatter": {
2633
"quoteStyle": "single"

0 commit comments

Comments
 (0)