-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.gitignore
More file actions
116 lines (100 loc) · 1.78 KB
/
Copy path.gitignore
File metadata and controls
116 lines (100 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Rust Build Artifacts
target/
**/target/
**/*.rs.bk
*.pdb
*.o
*.a
*.so
*.dylib
*.dll
# Python
__pycache__/
*.py[cod]
*$py.class
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
*.whl
.pytest_cache/
.mypy_cache/
.coverage
.dmypy.json
dmypy.json
# Node.js / Next.js
node_modules/
.next/
out/
.vercel
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Fuzz
**/fuzz/corpus/
**/fuzz/artifacts/
# HORUS Specific
.horus/
/dev/shm/horus/
*.horus
# A bare `docs/` matches a directory of that name at ANY depth. It was ignoring
# nothing — no path in this tree matched it, and the docs site is checked out as
# `horus-docs/` (docs-contract.yml:183) or `../horus-docs`, never as `docs/`.
# What it did do was silently swallow in-repo documentation: a file written to
# docs/ never appeared in `git status`. The pattern is kept for a stray local
# checkout, with the documentation directories re-included.
docs/
!/docs/
!/horus_net/docs/
.ouroboros-state.json
sync-all.sh
# Environment Variables
.env
.env*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Cargo local config (ignore contents, but track the cargo-audit triage list)
.cargo/*
!.cargo/audit.toml
# Claude Code
.claude/
.claude
# OS
.DS_Store
Thumbs.db
*.pem
# Cache
.cache/
*.cache
CLAUDE.md
API.md
# Compiler crash dumps
rustc-ice-*
# SLAM skill state
.slam-map.json
# Scratch target dirs from out-of-tree verification builds. `target/` above
# does not match these, and a stray one committed 3006 build files (including
# 150MB rlibs) that GitHub rejects outright.
target-*/
# Patch reject/backup artifacts — `git apply --reject` and `patch` leave these
# beside the file they failed on, and one reached PR #152 as a committed file.
*.rej
*.orig