-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitignore
More file actions
154 lines (130 loc) · 1.76 KB
/
.gitignore
File metadata and controls
154 lines (130 loc) · 1.76 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
# Rust build artifacts
**/target/
# IDE files
.vscode/
.idea/
*.sublime-workspace
*.swp
*.swo
*.swn
*.swx
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk
.directory
.Trash-*/
.nfs*
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Build outputs
*.o
*.a
*.so
*.dylib
*.dll
*.exe
# Debug files
*.debug
*.dSYM/
# Platform specific build directories
platforms/*/build/
# Log files
*.log
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.envrc
.direnv/
# Temporary files
tmp/
temp/
*.rej
*.orig
*.bak
*.tmp
# Coverage reports
tarpaulin-report.html
coverage/
# LLVM profiling / coverage data
*.profraw
*.profdata
# Benchmark results
criterion/
# Documentation build
book/
# RISC-V and kernel development specific
*.bin
*.img
*.iso
*.elf
*.map
spike.log
*.dump
# Third-party builds
third-party/*/build/
third-party/*/target/
# Cache directories
.cache/
# JS/TS build outputs and tool caches
dist/
.next/
.turbo/
.vite/
.parcel-cache/
.eslintcache
# Node modules (if using any JS tooling)
node_modules/
npmlog*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnp.*
.pnpm-store/
# Python cache (if using any Python tooling)
__pycache__/
*.py[cod]
*$py.class
# Python tooling
.venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
__pypackages__/
*.egg-info/
.eggs/
# C/C++ build systems
CMakeFiles/
CMakeCache.txt
cmake-build-*/
compile_commands.json
# Meson/Ninja
builddir/
.ninja_deps
.ninja_log
# Autotools (autoconf/automake/libtool) generated outputs
autom4te.cache/
config.log
config.status
config.cache
libtool
stamp-h1
.deps/
.libs/
*.la
*.lo