-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
187 lines (158 loc) · 2.65 KB
/
.gitignore
File metadata and controls
187 lines (158 loc) · 2.65 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
# =========================
# Crawler Project .gitignore
# =========================
# Rationale: Ignore build artifacts, local caches, generated data, editor state, OS cruft,
# and other files that should not be versioned. Retain source, configuration JSON under
# config/, and third_party submodules' source.
# ---- CMake / Build Artifacts ----
# Top-level and variant build directories
[Bb]uild/
[Bb]uild-*/
cmake-build-*/
# CMake generated files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CPackConfig.cmake
CPackSourceConfig.cmake
install_manifest.txt
CTestTestfile.cmake
# Compilation database (uncomment if you DO want to track it)
compile_commands.json
# Ninja / Make
build.ninja
.ninja_deps
.ninja_log
Makefile
# ---- Binaries / Libraries ----
*.o
*.obj
*.lo
*.la
*.a
*.so
*.so.*
*.dylib
*.dll
*.exe
*.out
*.app
*.ipa
*.bin
*.elf
*.hex
# Static / shared library version artifacts
*.pch
*.idf
# The main crawler executable if produced in repo root or build dir shadow copy
/crawler
# ---- Debug / Profiling / Coverage ----
*.dSYM/
*.gcno
*.gcda
*.gcov
*.prof
*.trace
*.perf
*.tracy
perf.data*
# Address/Thread sanitizers logs
asan*.log
lsan*.log
tsan*.log
ubsan*.log
# ---- Caches & Runtime Generated State ----
cache/
# RocksDB / leveldb style temporary files (common patterns)
LOCK
LOG
LOG.old
MANIFEST-*
*.sst
*.ldb
CURRENT
TEMPORARY
# ---- Data output (keep structure, ignore contents) ----
# If you want to version some sample data, add explicit negation patterns after these.
data/**
!data/.gitkeep
!data/README.md
# ---- Temporary queues / processed artifacts ----
*.queue
*.tmp
*.temp
*.swp
*.swo
*~
.#*
# ---- Logs ----
*.log
logs/
log/
# ---- Editor / IDE / Tooling ----
.vscode/
.idea/
*.code-workspace
*.iml
*.sublime-project
*.sublime-workspace
/.settings/
.project
.cproject
# clang / ccache
.clangd/
.clang-tidy
.clang-format
.cache/
ccache/
# VSCode profiling & debug
*.vsix
# ---- Python helper scripts (if any) ----
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pytest_cache/
.venv/
venv/
.env
.env.*
!.env.example
# ---- Node / JS tooling (just in case) ----
node_modules/
*.tsbuildinfo
# ---- OS / Filesystem Noise ----
.DS_Store
.DS_Store?
Thumbs.db
ehthumbs.db
Icon?
Desktop.ini
$RECYCLE.BIN/
*.Trash-*/
# ---- Archives / Packages ----
*.tar
*.gz
*.tgz
*.zip
*.bz2
*.7z
*.deb
*.rpm
*.pkg
# ---- Misc ----
*.orig
*.rej
*.patch
# ---- Third-party build dirs (keep sources) ----
third_party/**
# ---- Ignore core dumps ----
core.*
*.core
# ---- Local test artifacts ----
/test-output/
/tests-output/
# ---- Some Core files (if any) ----
# ---- Optional: Uncomment to ignore IDE-generated compilation DB copies ----
# compile_commands.json
# End of .gitignore