20 lines
228 B
Plaintext
20 lines
228 B
Plaintext
# 忽略IDE配置文件
|
|
.idea/
|
|
|
|
# 忽略Python编译文件
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# 忽略虚拟环境文件夹
|
|
venv/
|
|
|
|
# 忽略操作系统生成的文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 忽略日志文件
|
|
*.log
|
|
|
|
# 忽略临时文件
|
|
*.tmp
|