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
# Set up the folders/files that should never go into the git repository.
# The Mac Finder produces a metadata file in directories that is noise
.DS_Store
# My specific Visual Code setup is only useful to me
.vscode/
# Scratchings in a private directory that need not go into git
private/
# Temporary files we use to capture program outputs and compiled output files
scratch*
OUT
ERR
*.out
*.err
*.log
*.o
*.obj
*.exe
build
# Any LLM prompts
prompt.md
# Exclusions for the MSVC build system
out/
.vs/
# Any documentation site build folders
site/
html/
.quarto/
_site/
.luarc.json
# Exclusions for Python/Jupyter
venv/
.python-version
__pycache__/
.ipynb_checkpoints/
# Exclusions for Node.js
node_modules/
# Exclusions for Lua/LuaRocks
/luarocks
/lua
/lua_modules
/.luarocks
/.luarc.json
*.rock
# Exclusions for Rust/Cargo
/target
/Cargo.lock
**/*.rs.bkp*