-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: switch to biome and vitest
- Loading branch information
1 parent
e571dae
commit 3b13ae8
Showing
40 changed files
with
5,332 additions
and
13,278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
"vcs": { | ||
"enabled": true, | ||
"clientKind": "git" | ||
}, | ||
"formatter": { | ||
"indentStyle": "space", | ||
"lineWidth": 100 | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"arrowParentheses": "asNeeded", | ||
"quoteStyle": "single" | ||
} | ||
}, | ||
"linter": { | ||
"rules": { | ||
"complexity": { | ||
"noForEach": "off" | ||
}, | ||
"style": { | ||
"noNonNullAssertion": "off" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.