Skip to content

Commit 847b109

Browse files
archleviem1
andauthored
chore(gitignore): Expand .gitignore (#380)
* chore(gitignore): Expand .gitignore * chore(gitignore): Expand .gitignore --------- Co-authored-by: Levi Muniz <levi.muniz17@gmail.com>
1 parent ea7024a commit 847b109

1 file changed

Lines changed: 88 additions & 2 deletions

File tree

.gitignore

Lines changed: 88 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,88 @@
1-
.gradle/
2-
build/
1+
# Editors
2+
## Eclipse
3+
.classpath
4+
.project
5+
.settings/
6+
*.launch
7+
8+
## IntelliJ / JetBrains
9+
.idea/
10+
*.iml
11+
*.ipr
12+
*.iws
13+
14+
## VS Code
15+
.vscode/
16+
17+
## Zed
18+
.zed/
19+
20+
## Vim / Neovim
21+
*.swp
22+
*.swo
23+
*~
24+
25+
## Emacs
26+
\#*\#
27+
.\#*
28+
29+
# Gradle
30+
/.gradle/
31+
/build/
32+
out/
33+
34+
## Binary
35+
/bin/
36+
37+
## Kotlin
38+
.kotlin/
39+
40+
## Run task
41+
run/
42+
logs/
43+
44+
## Java
45+
*.class
46+
hs_err_pid*
47+
replay_pid*
48+
49+
# Maven
50+
target/
51+
52+
# OS files
53+
.DS_Store
54+
Thumbs.db
55+
desktop.ini
56+
57+
# Logs and runtime artifacts
58+
*.log
59+
*.log.*
60+
*.tmp
61+
*.temp
62+
*.pid
63+
*.seed
64+
65+
# Archives
66+
*.zip
67+
*.tar
68+
*.tar.gz
69+
*.tgz
70+
*.rar
71+
*.7z
72+
73+
# Environment files
74+
**/.env
75+
**/.env.local
76+
**/.env.*.local
77+
78+
# Tools
79+
## Local cache
80+
.cache/
81+
.tmp/
82+
tmp/
83+
84+
## Python
85+
**/__pycache__/
86+
*.pyc
87+
.venv/
88+
venv/

0 commit comments

Comments
 (0)