Skip to content

Commit aa5f1cc

Browse files
committed
docs: update .gitignore via Apex Optimizer
1 parent da9162a commit aa5f1cc

File tree

1 file changed

+37
-51
lines changed

1 file changed

+37
-51
lines changed

.gitignore

Lines changed: 37 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,38 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Object files
5-
*.o
6-
*.ko
7-
*.obj
8-
*.elf
9-
10-
# Linker output
11-
*.ilk
12-
*.map
13-
*.exp
14-
15-
# Precompiled Headers
16-
*.gch
17-
*.pch
18-
19-
# Libraries
20-
*.lib
21-
*.a
22-
*.la
23-
*.lo
24-
25-
# Shared objects (inc. Windows DLLs)
26-
*.dll
1+
# Python Artifacts & Environments
2+
.venv/
3+
__pycache__/
4+
*.py[cod]
275
*.so
28-
*.so.*
29-
*.dylib
30-
31-
# Executables
32-
*.exe
33-
*.out
34-
*.app
35-
*.i*86
36-
*.x86_64
37-
*.hex
38-
39-
# Debug files
40-
*.dSYM/
41-
*.su
42-
*.idb
43-
*.pdb
44-
45-
# Kernel Module Compile Results
46-
*.mod*
47-
*.cmd
48-
.tmp_versions/
49-
modules.order
50-
Module.symvers
51-
Mkfile.old
52-
dkms.conf
6+
*.egg-info/
7+
.pytest_cache/
8+
.ruff_cache/
9+
.mypy_cache/
10+
.coverage
11+
12+
# Editor/IDE Specific
13+
.idea/
14+
.vscode/
15+
*.swp
16+
17+
# Virtual Environment Manager Cache (uv)
18+
/venv/
19+
20+
# Build/Distribution
21+
dist/
22+
build/
23+
*.egg
24+
25+
# Jupyter Notebooks
26+
.ipynb_checkpoints
27+
28+
# Logs and Runtime Data
29+
*.log
30+
/data/
31+
32+
# Secrets and Credentials (NEVER COMMIT)
33+
.env
34+
secrets.json
35+
36+
# Operating System Files
37+
.DS_Store
38+
Thumbs.db

0 commit comments

Comments
 (0)