ci(added biome linter in): added in biom linter to assist

This commit is contained in:
2025-10-15 14:26:16 -05:00
parent da1127057c
commit 2023c2fc35
3 changed files with 620 additions and 117 deletions

45
biome.json Normal file
View File

@@ -0,0 +1,45 @@
{
"$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"enabled": false,
"rules": {
"suspicious": {
"noConsole": {
"options": {
"allow": ["error", "info"]
}
}
},
"correctness": {
"useJsxKeyInIterable": "error"
}
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"recommended": true,
"organizeImports": "on"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}