Skip to content

Commit 4258f35

Browse files

File tree

1 file changed

+143
-9
lines changed

1 file changed

+143
-9
lines changed

.gitignore

Lines changed: 143 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,145 @@
1-
.idea
2-
.DS_Store
1+
# archives
2+
*.7z
3+
*.7zip
4+
*.bz2
5+
*.dmg
6+
*.gpg
7+
*.gz
8+
*.gzip
9+
*.iso
10+
*.lzo
11+
*.rar
12+
*.tar
13+
*.tgz
14+
*.xz
15+
*.zip
16+
*.zst
17+
*.zstd
18+
19+
# binary files
20+
*.a
21+
*.bin
22+
*.d
23+
*.dll
24+
*.dylib
25+
*.gch
26+
*.la
27+
*.lai
28+
*.lib
29+
*.lo
30+
*.o
31+
*.obj
32+
*.pch
33+
*.slo
34+
*.so
35+
36+
# build artifacts
37+
artifacts
38+
build
39+
.cache
40+
cache
41+
coverage
42+
deps
43+
dist
344
node_modules
4-
/build
5-
/.svelte-kit
6-
/package
45+
out
46+
target
47+
tmp
48+
49+
# data files
50+
*.csv
51+
*.db
52+
*.dbf
53+
*.fods
54+
*.json
55+
*.ods
56+
*.odt
57+
*.ots
58+
*.sqlite
59+
*.tsv
60+
*.uos
61+
*.xls
62+
*.xlsm
63+
*.xlsx
64+
*.xlt
65+
*.xltx
66+
*.xml
67+
68+
# editor files
69+
.ccls-cache
70+
.idea
71+
*.sw?
72+
*.vim
73+
.vscode
74+
75+
# environment variable files
776
.env
8-
.env.*
9-
!.env.example
10-
vite.config.js.timestamp-*
11-
vite.config.ts.timestamp-*
77+
78+
# executables
79+
*.apk
80+
*.app
81+
*.AppImage
82+
*.com
83+
*.deb
84+
*.exe
85+
*.jar
86+
*.msi
87+
*.out
88+
*.rpm
89+
90+
# file explorer metadata
91+
._*
92+
*.DS_Store*
93+
ehthumbs.db
94+
lost+found
95+
.Spotlight*
96+
thumbs.db
97+
Thumbs.db
98+
thumbs.db:encryptable
99+
thumbs.db_encryptable
100+
.Trashes
101+
102+
# keys and certs
103+
*.cer
104+
*.crt
105+
*.key
106+
*.pem
107+
*.pub
108+
109+
# logs
110+
logs
111+
*.log
112+
*.log*
113+
*.txt
114+
115+
# node
116+
.cache
117+
coverage
118+
dist
119+
.eslintcache
120+
*.lcov
121+
lib-cov
122+
*.lock
123+
.next
124+
node_modules
125+
.node_repl_history
126+
.npm
127+
npm-debug.log*
128+
.nuxt
129+
.serverless
130+
*.tsbuildinfo
131+
typings
132+
yarn-debug.log*
133+
yarn-error.log*
134+
.yarn-integrity
135+
136+
# python
137+
__pycache__
138+
.mypy_cache
139+
140+
# temporary files
141+
*.bak
142+
*.old
143+
*.orig
144+
*.test
145+
*.tmp

0 commit comments

Comments
 (0)