chore: 新增清理脚本并优化项目配置

1.  新增clean脚本用于清理项目构建产物和缓存
2.  更新.gitignore忽略eslint缓存和src-tauri的target目录
3.  在package.json中添加clean命令
4.  格式化StudentManager组件的回调函数代码
This commit is contained in:
Yukino_fox
2026-07-05 10:47:39 +08:00
parent 1c2cc2e077
commit fbf8079cca
4 changed files with 202 additions and 41 deletions
+4
View File
@@ -5,6 +5,7 @@ node_modules/
dist/
build/
target/
src-tauri/target/
# Logs
*.log
@@ -24,6 +25,9 @@ yarn-error.log*
*.swo
*.tmp
# Lint cache
.eslintcache
# Python
__pycache__/
*.pyc