-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (41 loc) · 1.92 KB
/
.gitignore
File metadata and controls
48 lines (41 loc) · 1.92 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
# ─── C++ Build Artifacts ───────────────────────────────────────────────────
*.exe
*.pdb
*.dll
*.obj
*.o
*.a
*.lib
*.so
*.dylib
src/compiler/build/
src/sim/build/
# ─── Project-specific ──────────────────────────────────────────────────────
src/compiler/ast/
src/compiler/bad.json
vcpkg/
# ─── Node / Frontend ───────────────────────────────────────────────────────
node_modules/
src/electron/node_modules/
src/ui-lovable/node_modules/
src/ui/node_modules/
dist/
# ─── Python ────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
.pytest_cache/
# ─── Environment / Secrets ─────────────────────────────────────────────────
.env
.env.*
# ─── Logs ──────────────────────────────────────────────────────────────────
*.log
logs/
# ─── IDE / Editor ──────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
# ─── OS ────────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini