- risk.rs 新增 Tauri command get_high_risk_scopes(薄包装)+ lib.rs 注册 - commands.ts 封装 HighRiskScope 类型与调用(R01) - FlywheelPanel 新增「返工热区」块:跨项目返工率降序, 分级配色与 classify_risk 阈值一致(≥35% 红 / ≥15% 琥珀) - 蓝图:P3-A~E 五卡全部 done,附 L 级复盘笔记,模块 progress 98 Rules-Applied: R01,R13
37 lines
483 B
Plaintext
37 lines
483 B
Plaintext
# Windows 保留名
|
||
nul
|
||
|
||
# 依赖
|
||
node_modules/
|
||
.pnpm-store/
|
||
|
||
# 构建产物
|
||
dist/
|
||
src-tauri/target/
|
||
|
||
# 环境
|
||
.env
|
||
.env.*
|
||
!.env.example
|
||
|
||
# 编辑器
|
||
.vscode/
|
||
.idea/
|
||
.qwen/
|
||
*.suo
|
||
*.user
|
||
|
||
# 系统
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# 炼境实例数据(项目 ID 和端口,每台机器不同,不入库)
|
||
.claude/liangjing.json
|
||
src-tauri/dev_manager.db
|
||
|
||
# 防止签名密钥被误提交(Windows ~ 路径展开问题)
|
||
~/
|
||
|
||
# 测试运行产物(根目录杂散 DB)
|
||
/dev-manager-tauri.db
|