Skip to content

Commit a751d9f

Browse files
authored
Merge pull request #1 from eosnetworkfoundation/zach-gitignore
Update .gitignore
2 parents 6c72200 + cabbdb9 commit a751d9f

File tree

1 file changed

+146
-7
lines changed

1 file changed

+146
-7
lines changed

.gitignore

Lines changed: 146 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,150 @@
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+
package
47+
target
48+
tmp
49+
50+
# data files
51+
*.csv
52+
*.db
53+
*.dbf
54+
*.fods
55+
*.json
56+
*.ods
57+
*.odt
58+
*.ots
59+
*.sqlite
60+
*.tsv
61+
*.uos
62+
*.xls
63+
*.xlsm
64+
*.xlsx
65+
*.xlt
66+
*.xltx
67+
*.xml
68+
69+
# editor files
70+
.ccls-cache
71+
.idea
72+
*.sw?
73+
*.vim
74+
.vscode
75+
76+
# environment variable files
777
.env
8-
.env.*
9-
!.env.example
78+
79+
# executables
80+
*.apk
81+
*.app
82+
*.AppImage
83+
*.com
84+
*.deb
85+
*.exe
86+
*.jar
87+
*.msi
88+
*.out
89+
*.rpm
90+
91+
# file explorer metadata
92+
._*
93+
*.DS_Store*
94+
ehthumbs.db
95+
lost+found
96+
.Spotlight*
97+
thumbs.db
98+
Thumbs.db
99+
thumbs.db:encryptable
100+
thumbs.db_encryptable
101+
.Trashes
102+
103+
# keys and certs
104+
*.cer
105+
*.crt
106+
*.key
107+
*.pem
108+
*.pub
109+
110+
# logs
111+
logs
112+
*.log
113+
*.log*
114+
*.txt
115+
116+
# node
117+
.cache
118+
coverage
119+
dist
120+
.eslintcache
121+
*.lcov
122+
lib-cov
123+
*.lock
124+
.netlify
125+
.next
126+
node_modules
127+
.node_repl_history
128+
.npm
129+
npm-debug.log*
130+
.nuxt
131+
.serverless
132+
.svelte-kit
133+
*.tsbuildinfo
134+
typings
10135
vite.config.js.timestamp-*
11136
vite.config.ts.timestamp-*
137+
yarn-debug.log*
138+
yarn-error.log*
139+
.yarn-integrity
140+
141+
# python
142+
__pycache__
143+
.mypy_cache
144+
145+
# temporary files
146+
*.bak
147+
*.old
148+
*.orig
149+
*.test
150+
*.tmp

0 commit comments

Comments
 (0)