Skip to content

Commit

Permalink
using vitest and doming some big refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
goerwin committed Jul 27, 2024
1 parent fc0d399 commit 1884ec3
Show file tree
Hide file tree
Showing 20 changed files with 2,365 additions and 1,293 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Vitest Current File",
"program": "${workspaceFolder}/node_modules/.bin/vitest",
"args": ["run", "${file}"],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
}
]
}
7 changes: 7 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
"organizeImports": {
"enabled": true
},

"files": {
"ignore": ["_tests/**/*.json", "launch.json"]
},

"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 120
},

"linter": {
"enabled": true,
"rules": {
Expand All @@ -21,6 +27,7 @@
}
}
},

"javascript": {
"formatter": {
"quoteStyle": "single"
Expand Down
Loading

0 comments on commit 1884ec3

Please sign in to comment.