Skip to content

Commit 47231f5

Browse files
committedOct 22, 2024·
Introduce a general gitignore
1 parent 8b9cc03 commit 47231f5

File tree

1 file changed

+204
-0
lines changed

1 file changed

+204
-0
lines changed
 

‎.gitignore

+204
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
# General ignores for OS and development tools
2+
3+
# macOS
4+
.DS_Store
5+
.AppleDouble
6+
.LSOverride
7+
8+
# Windows
9+
Thumbs.db
10+
ehthumbs.db
11+
Desktop.ini
12+
$RECYCLE.BIN/
13+
14+
# Linux
15+
.Trash-*
16+
17+
# Node.js
18+
node_modules/
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
.pnpm-debug.log*
23+
24+
# Logs
25+
logs
26+
*.log
27+
npm-debug.log*
28+
yarn-debug.log*
29+
pnpm-debug.log*
30+
lerna-debug.log*
31+
32+
# Dependency directories
33+
node_modules/
34+
jspm_packages/
35+
36+
# Optional npm cache directory
37+
.npm
38+
.pnpm-store/
39+
40+
# IDEs and Editors
41+
42+
# VSCode
43+
.vscode/
44+
.vscode-test/
45+
46+
# Sublime Text
47+
*.sublime-workspace
48+
49+
# JetBrains (IntelliJ, PyCharm, WebStorm)
50+
.idea/
51+
*.iml
52+
*.iws
53+
*.ipr
54+
out/
55+
56+
# Visual Studio
57+
.vs/
58+
*.csproj.user
59+
*.suo
60+
*.user
61+
*.userosscache
62+
*.sln.docstates
63+
64+
# Eclipse
65+
*.pydevproject
66+
.project
67+
.metadata/
68+
bin/
69+
tmp/
70+
71+
# Android Studio
72+
.gradle/
73+
local.properties
74+
.idea/
75+
.DS_Store
76+
/build/
77+
captures/
78+
79+
# Xcode
80+
*.xcworkspace
81+
xcuserdata/
82+
*.xcuserstate
83+
build/
84+
85+
# Python
86+
__pycache__/
87+
*.py[cod]
88+
*.pyo
89+
*.pyd
90+
.Python
91+
env/
92+
venv/
93+
ENV/
94+
venv.bak/
95+
96+
# Pipenv
97+
Pipfile.lock
98+
99+
# Poetry
100+
poetry.lock
101+
102+
# Django
103+
*.sqlite3
104+
/static/
105+
*.pyc
106+
107+
# Ruby
108+
*.gem
109+
*.rbc
110+
.rspec
111+
Gemfile.lock
112+
vendor/bundle/
113+
.rvm/
114+
.rbenv/
115+
.ruby-version
116+
.ruby-gemset
117+
118+
# Go
119+
bin/
120+
vendor/
121+
*.exe
122+
*.test
123+
*.out
124+
125+
# Rust
126+
/target/
127+
**/*.rs.bk
128+
Cargo.lock
129+
130+
# PHP
131+
vendor/
132+
composer.lock
133+
134+
# Java
135+
*.class
136+
*.jar
137+
*.war
138+
*.ear
139+
*.class
140+
*.iml
141+
*.ipr
142+
.idea/
143+
target/
144+
*.log
145+
146+
# C/C++
147+
*.obj
148+
*.o
149+
*.a
150+
*.lib
151+
*.so
152+
*.exe
153+
*.dll
154+
.vscode/
155+
.clangd/
156+
.ccls-cache/
157+
158+
# Archives
159+
*.zip
160+
*.tar.gz
161+
*.7z
162+
*.rar
163+
164+
# System files
165+
Thumbs.db
166+
Desktop.ini
167+
.DS_Store
168+
.idea/
169+
*.bak
170+
171+
# Ignore build artifacts and intermediate files.
172+
*.class
173+
*.war
174+
*.ear
175+
*.jar
176+
*.dll
177+
*.o
178+
*.so
179+
*.exe
180+
*.out
181+
*.pyc
182+
*.pyo
183+
184+
# Environment variables and credentials
185+
.env
186+
.env.local
187+
.env.development.local
188+
.env.test.local
189+
.env.production.local
190+
191+
# Temporary files and backups
192+
*.tmp
193+
*.swp
194+
*.swo
195+
*~
196+
*.bak
197+
*.old
198+
*.orig
199+
*.save
200+
*.rej
201+
# Ignore coverage reports
202+
coverage/
203+
.nyc_output/
204+
*.lcov

0 commit comments

Comments
 (0)
Please sign in to comment.