forked from Kexing/AI4SE_Practices
54 lines
463 B
Plaintext
54 lines
463 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 测试环境
|
|
.env
|
|
.env.local
|
|
*.log
|
|
|
|
# 模型文件(大文件)
|
|
*.bin
|
|
*.safetensors
|
|
*.gguf
|
|
*.pt
|
|
*.pth
|
|
models/
|
|
|
|
# 测试结果(临时文件)
|
|
test-results/tmp/
|
|
screenshots/tmp/
|
|
|
|
# 其他
|
|
*.bak
|
|
*.tmp
|
|
|