Remove ignored files from repo
This commit is contained in:
74
.gitignore
vendored
Normal file
74
.gitignore
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
|
||||
# ============================
|
||||
# macOS 系统文件
|
||||
# ============================
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# 缩略图缓存
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# ============================
|
||||
# Python
|
||||
# ============================
|
||||
|
||||
# 编译文件
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# 虚拟环境
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# 打包和分发
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# 单元测试/覆盖率
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
.tox/
|
||||
|
||||
# mypy / 类型检查
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pydantic, pyright, ruff
|
||||
.pyre/
|
||||
.pytype/
|
||||
.ruff_cache/
|
||||
|
||||
# ============================
|
||||
# VS Code
|
||||
# ============================
|
||||
.vscode/
|
||||
.history/
|
||||
*.code-workspace
|
||||
|
||||
# ============================
|
||||
# 其他常见情况
|
||||
# ============================
|
||||
|
||||
# 日志
|
||||
*.log
|
||||
|
||||
# 临时文件
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Swift Package Manager
|
||||
.build/
|
||||
Reference in New Issue
Block a user