Files
FacereDataset/.gitignore
Knowit 67a2d0448b .gitignore: add *.rpt for kicad-cli sch erc default output
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>
2026-04-28 23:11:20 +08:00

48 lines
659 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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