-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
209 lines (208 loc) · 3.73 KB
/
.gitignore
File metadata and controls
209 lines (208 loc) · 3.73 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2025 Michael Gardner, A Bit of Help, Inc.
###############################################################################
# Ada/GNAT Build Artifacts
# Object files and build artifacts
obj/
*.o
*.ali
*.a
*.so
*.dll
*.dylib
# Library build artifacts
lib/
*.lexch
*.bexch
# Binder generated files
b__*.ad[sb]
b~*.ad[sb]
# Generated executables
bin/
*.exe
*.elf
*.bin
*.hex
*.map
# Alire (Ada Package Manager)
# Alire cache and dependencies
alire/
.alire/
# Alire lock file (not recommended for version control per Alire docs)
# Lock file location: alire/alire.lock
# AI Agentic Assistants
.claude/
# GNAT Project Manager (GPRbuild)
# Auto-generated config (typically generated by Alire)
config/*_config.ads
config/*_config.gpr
config/*_config.h
# GPRbuild cache
.gnatdebug
.gnatstudio
# IDEs and Editors
# GPS (GNAT Programming Studio)
*.gpr.cgpr
gps.cgpr
gnatinspect.db
.gnatinspect/
# VS Code
.vscode/
*.code-workspace
# Emacs
*~
\#*\#
.#*
*.swp
*.swo
# Vim
*.swn
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
Session.vim
# JetBrains IDEs
.idea/
*.iml
*.iws
# Sublime Text
*.sublime-project
*.sublime-workspace
# Eclipse / STM32CubeIDE
.project
.cproject
.settings/
.metadata/
# Operating System Files
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Linux
.directory
.Trash-*
.nfs*
# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk
# Debugging and Development
# Debugger files
*.gdb_history
.gdb_history
# User-specific debugger configs (uncomment if .gdbinit should be per-user)
# .gdbinit
# Core dumps
core
core.*
vgcore.*
# Profiling and Coverage
gmon.out
*.gcov
*.gcda
*.gcno
*.srctrace
coverage/
*.gcov.html
lcov.info
# GNATcoverage runtime (generated by build_gnatcov_runtime.py)
external/
# Documentation Build
# Generated API documentation (from shared_config.gpr)
docs/api/
# Sphinx/other doc generators
docs/_build/
docs/html/
docs/latex/
# mdBook artifacts (generated HTML output)
docs/book/
# docs/book/book/ # mdBook HTML output
# docs/book/**/*.html # Generated HTML files
# docs/book/**/*.js # Generated JavaScript
# docs/book/**/*.css # Generated stylesheets (except custom theme)
# !docs/book/theme/ # Keep custom theme if added
# Temporary and Backup Files
# Backup files
*.bak
*.backup
*.old
# Temporary files
*.tmp
*.temp
tmp/
temp/
# Testing
# Test build artifacts
test/obj/
test/bin/
**/test_all
**/test_runner
*.test_results
*.test_output
# Test coverage reports
htmlcov/
.coverage
.pytest_cache/
# Ada coverage files (gcov/gcovr)
test/obj-coverage/
# Project Specific
# Sub-project build artifacts (belt-and-suspenders with patterns above)
bootstrap/obj/
bootstrap/bin/
bootstrap/lib/
domain/obj/
domain/lib/
internal/obj/
internal/lib/
# Keep externals (ADL submodule) tracked by git
# But ignore any build artifacts within it
externals/*/obj/
externals/*/bin/
externals/*/lib/
# Logs
*.log
data/
*.zip
*.tar.gz
# Python (for automation scripts)
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
venv/
env/
ENV/
# Temporary
# GNAT Pretty Print temp files
*__GNATPP-TEMP
*.tgz
# Claude Code session exports / ephemeral scratch space.
# The CLI /export command has been broken for some time (writes
# 0-byte stubs); durable session artifacts now live in
# backup/sessions/ via the session_snapshot tool in
# scripts/python/shared. The exports/ directory is kept as a local
# scratch path for cross-project context bouncing, but its contents
# are not git-tracked. See backup/sessions/README.md.
exports/