Skip to content

Commit df4ce51

Browse files
authored
Add files via upload
Signed-off-by: Bubbles The Dev <[email protected]>
1 parent 6192a63 commit df4ce51

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
4+
# Virtual environment
5+
env/
6+
.venv/
7+
8+
# Environment variables and secrets
9+
.env
10+
*.env
11+
12+
# IDE specific files
13+
.vscode/
14+
.idea/
15+
*.swp
16+
*.swo
17+
18+
# Node modules and logs
19+
node_modules/
20+
npm-debug.log
21+
yarn-error.log
22+
23+
# Operating system generated files
24+
.DS_Store
25+
Thumbs.db
26+
27+
# Python bytecode
28+
*.py[cod]
29+
*$py.class
30+
31+
# Jupyter Notebook checkpoints
32+
.ipynb_checkpoints/
33+
34+
# Custom ignore files for specific scripts that are for personal use or tests
35+
te*hee*.py
36+
videogamefan*.py
37+
38+
# Ignore all files in a directory
39+
**/ignore_directory/
40+
41+
# Ignore all folders in a directory
42+
**/ignore_directory/**
43+
44+
# Ignore .txt files in the root directory
45+
/*.txt

0 commit comments

Comments
 (0)