-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (91 loc) · 1.09 KB
/
.gitignore
File metadata and controls
110 lines (91 loc) · 1.09 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
# Build directories
build/
cmake-build-*/
out/
# CMake generated files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
compile_commands.json
CMakeUserPresets.json
# Compiled files
*.o
*.obj
*.a
*.so
*.dylib
*.exe
# CUDA compiled files
*.cubin
*.ptx
*.fatbin
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
*.egg
.eggs/
*.whl
# Virtual environments
.venv/
venv/
env/
# Testing & Coverage
.pytest_cache/
.coverage
htmlcov/
coverage.xml
*.gcov
*.gcda
*.gcno
# Profiling
*.nsys-rep
*.ncu-rep
*.nvprof
*.prof
perf.data
perf.data.old
flamegraph.svg
cachegrind.out.*
callgrind.out.*
# Benchmark results
benchmark_results/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs & temp
*.log
*.tmp
*.temp
# Environment
.env
.env.local
# Local AI agent worktrees
.claude/
.worktrees/
# oh-my-claudecode
.omc/
# LSP configuration
.clangd
# Node.js / npm (Docs)
node_modules/
package-lock.json
!docs/package-lock.json
# VitePress build output
docs/.vitepress/dist/
docs/.vitepress/cache/
# Python linters cache
.ruff_cache/
.mypy_cache/
# Temporary test files
*.tmp.*
*.temp.*