chore: use biome instead of eslint and prettier

This commit is contained in:
Starcea 2024-06-29 13:48:40 +09:00
commit 7cd2acc5dd
No known key found for this signature in database
GPG key ID: B7A77E32374911E1
11 changed files with 119 additions and 1007 deletions

24
biome.json Normal file
View file

@ -0,0 +1,24 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"indentStyle": "space"
},
"javascript": {
"formatter": {
"semicolons": "asNeeded",
"quoteStyle": "single"
}
},
"files": {
"ignore": ["node_modules", "dist"]
}
}