95 lines
1.2 KiB
Plaintext
95 lines
1.2 KiB
Plaintext
# ===== 临时与缓存 =====
|
||
# tmp/
|
||
__pycache__/
|
||
*.pyc
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
.hypothesis/
|
||
.pytest_cache/
|
||
pytest-cache-files-*/
|
||
logs/
|
||
*.log
|
||
*.jsonl
|
||
|
||
# ===== 审计文件 =====
|
||
docs/audit/
|
||
|
||
# ===== 运行时产出 =====
|
||
export/
|
||
reports/
|
||
scripts/logs/
|
||
|
||
|
||
# ===== 环境配置(保留模板) =====
|
||
.env
|
||
.env.local
|
||
!.env.template
|
||
|
||
# ===== Node =====
|
||
node_modules/
|
||
|
||
# ===== Python 虚拟环境 =====
|
||
.venv/
|
||
venv/
|
||
ENV/
|
||
env/
|
||
|
||
# ===== Python 构建产物 =====
|
||
.Python
|
||
build/
|
||
develop-eggs/
|
||
downloads/
|
||
eggs/
|
||
.eggs/
|
||
lib/
|
||
lib64/
|
||
parts/
|
||
sdist/
|
||
var/
|
||
wheels/
|
||
*.egg-info/
|
||
.installed.cfg
|
||
*.egg
|
||
dist/
|
||
|
||
# ===== 测试覆盖率 =====
|
||
.coverage
|
||
htmlcov/
|
||
|
||
# ===== 测试 =====
|
||
tests/
|
||
|
||
# ===== infra 敏感文件 =====
|
||
infra/**/*.key
|
||
infra/**/*.pem
|
||
infra/**/*.secret
|
||
|
||
# ===== IDE =====
|
||
.idea/
|
||
.vscode/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
.specstory/
|
||
.cursorindexingignore
|
||
|
||
# ===== Windows 杂项 =====
|
||
*.lnk
|
||
.Deleted/
|
||
|
||
# ===== Kiro 运行时状态 =====
|
||
.kiro/.audit_state.json
|
||
.kiro/.last_prompt_id.json
|
||
.kiro/.git_snapshot.json
|
||
.kiro/.file_baseline.json
|
||
.kiro/.compliance_state.json
|
||
.kiro/.audit_context.json
|
||
|
||
# ===== 运维脚本运行时状态 =====
|
||
scripts/ops/.monitor_token
|
||
|
||
|
||
# ===== Kiro Powers(含敏感 DSN) =====
|
||
powers/
|