bisect KiCad 8 语法时跑 kicad-cli sch erc 没传 --output 参数会把 报告写到当前目录的 <input>.rpt,跑十几次主目录就堆了 20 个 .rpt 垃圾。加进 ignore 防回流。 同时清掉本次留下的: 20 个 *.rpt 报告(已 rm) data/state/std_probe[1-5]/ 5 个旧 probe 状态目录(~8.5 MB stale, 这些目录里的 probe scripts 在前一会话已删;状态本身也没用了) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
48 lines
659 B
Plaintext
48 lines
659 B
Plaintext
# Derivative 数据(可从 raw 重建),不入库
|
||
data/processed/*
|
||
data/state/*
|
||
!data/processed/.gitkeep
|
||
!data/state/.gitkeep
|
||
|
||
# data/raw 入库(工程二进制走 LFS,见 .gitattributes)
|
||
|
||
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*.egg-info/
|
||
.pytest_cache/
|
||
.ruff_cache/
|
||
.mypy_cache/
|
||
.venv/
|
||
venv/
|
||
.env
|
||
.env.*
|
||
!.env.example
|
||
|
||
# uv
|
||
uv.lock
|
||
|
||
# Node (if we add JS helpers)
|
||
node_modules/
|
||
|
||
# Editor / OS
|
||
.vscode/
|
||
.idea/
|
||
.DS_Store
|
||
Thumbs.db
|
||
*.swp
|
||
|
||
# Claude Code session-local state
|
||
.claude/
|
||
|
||
# Local scratch
|
||
/tmp/
|
||
/scratch/
|
||
*.log
|
||
# kicad-cli sch erc default output (when --output not given goes to cwd/<input>.rpt)
|
||
*.rpt
|
||
|
||
# Private keys — never commit
|
||
*.pem
|
||
*.key
|