c30eb9b7ad
Build and Package Oraset / build (macos-latest) (push) Waiting to run
Build and Package Oraset / build (ubuntu-latest) (push) Waiting to run
Build and Package Oraset / build (windows-latest) (push) Waiting to run
Build and Package Oraset / release (push) Blocked by required conditions
166 lines
1.8 KiB
Plaintext
166 lines
1.8 KiB
Plaintext
# 忽略编译产物
|
|
build/
|
|
dist/
|
|
__pycache__/
|
|
*.py[codz]
|
|
*$py.class
|
|
|
|
# 忽略C扩展
|
|
*.so
|
|
|
|
# 忽略文档构建产物
|
|
docs/site/
|
|
docs/_build/
|
|
/site
|
|
|
|
# 忽略示例文件
|
|
examples/
|
|
|
|
# 忽略扩展文件
|
|
includes/
|
|
|
|
# 忽略测试文件
|
|
test_*.oas
|
|
|
|
# 忽略打包文件
|
|
*.osp
|
|
|
|
# 忽略临时文件
|
|
*.tmp
|
|
*.temp
|
|
|
|
# 忽略IDE文件
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 忽略操作系统文件
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# 忽略日志文件
|
|
*.log
|
|
|
|
# 忽略配置文件
|
|
*.ini
|
|
*.cfg
|
|
*.conf
|
|
|
|
# 忽略安装相关文件
|
|
.Python
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# 忽略PyInstaller文件
|
|
*.manifest
|
|
*.spec
|
|
|
|
# 忽略安装日志
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# 忽略测试覆盖率报告
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# 忽略翻译文件
|
|
*.mo
|
|
*.pot
|
|
|
|
# 忽略Django相关文件
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# 忽略Flask相关文件
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# 忽略Scrapy相关文件
|
|
.scrapy
|
|
|
|
# 忽略PyBuilder文件
|
|
.pybuilder/
|
|
target/
|
|
|
|
# 忽略Jupyter Notebook文件
|
|
.ipynb_checkpoints
|
|
|
|
# 忽略IPython文件
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# 忽略虚拟环境
|
|
.env
|
|
.envrc
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# 忽略Spyder项目设置
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# 忽略Rope项目设置
|
|
.ropeproject
|
|
|
|
# 忽略类型检查缓存
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# 忽略Pyre类型检查器
|
|
.pyre/
|
|
|
|
# 忽略pytype静态类型分析器
|
|
.pytype/
|
|
|
|
# 忽略Cython调试符号
|
|
cython_debug/
|
|
|
|
# 忽略Abstra相关文件
|
|
.abstra/
|
|
|
|
# 忽略Ruff缓存
|
|
.ruff_cache/
|
|
|
|
# 忽略PyPI配置文件
|
|
.pypirc
|
|
|
|
# 忽略Cursor相关文件
|
|
.cursorignore
|
|
.cursorindexingignore
|
|
|
|
# 忽略Marimo相关文件
|
|
marimo/_static/
|
|
marimo/_lsp/
|
|
__marimo__/ |