mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
1. 将枚举 Server 改为字符串常量,使得 memshell 和 probeshell 都能共用 2. 移除 memshell 模块直接内置在 generator 中 3. 通用类从 memshell 移动至 javaweb 下,命名修改,增加辨识度
43 lines
856 B
JSON
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"
|
|
}
|
|
}
|
|
}
|