项目初始化

This commit is contained in:
Ben
2025-04-24 19:13:20 +08:00
parent dd49a93045
commit 33cc46f03e
49 changed files with 6914 additions and 4 deletions

38
biome.json Normal file
View File

@@ -0,0 +1,38 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingComma": "all",
"semicolons": "always"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"json": {
"parser": {
"allowComments": true
}
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
}
}