Files
MemShellParty/web/biome.json
T
ReaJason f9dce4f84b refactor: rename
1. 将枚举 Server 改为字符串常量,使得 memshell 和 probeshell 都能共用
2. 移除 memshell 模块直接内置在 generator 中
3. 通用类从 memshell 移动至 javaweb 下,命名修改,增加辨识度
2025-08-13 23:53:40 +08:00

43 lines
856 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.1.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/node_modules",
"!**/.next",
"!**/dist",
"!**/.turbo",
"!**/.source",
"!**/convex/_generated",
"!**/components/ui/**"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"includes": ["!**/test/snapshots/**/*"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noFallthroughSwitchClause": "off",
"noExplicitAny": "off"
}
}
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}