Skip to content

Commit 3e2f084

Browse files
committed
🚀 initial commit
0 parents  commit 3e2f084

File tree

1 file changed

+167
-0
lines changed

1 file changed

+167
-0
lines changed

‎.gitignore‎

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
# Created by https://www.gitignore.io/api/vim,osx,node,linux,windows
2+
3+
### Linux ###
4+
*~
5+
6+
# temporary files which can be created if a process still has a handle open of a deleted file
7+
.fuse_hidden*
8+
9+
# KDE directory preferences
10+
.directory
11+
12+
# Linux trash folder which might appear on any partition or disk
13+
.Trash-*
14+
15+
# .nfs files are created when an open file is removed but is still being accessed
16+
.nfs*
17+
18+
### Node ###
19+
# Logs
20+
logs
21+
*.log
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# Runtime data
27+
pids
28+
*.pid
29+
*.seed
30+
*.pid.lock
31+
32+
# Directory for instrumented libs generated by jscoverage/JSCover
33+
lib-cov
34+
35+
# Coverage directory used by tools like istanbul
36+
coverage
37+
38+
# nyc test coverage
39+
.nyc_output
40+
41+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
42+
.grunt
43+
44+
# Bower dependency directory (https://bower.io/)
45+
bower_components
46+
47+
# node-waf configuration
48+
.lock-wscript
49+
50+
# Compiled binary addons (https://nodejs.org/api/addons.html)
51+
build/Release
52+
53+
# Dependency directories
54+
node_modules/
55+
jspm_packages/
56+
57+
# TypeScript v1 declaration files
58+
typings/
59+
60+
# Optional npm cache directory
61+
.npm
62+
63+
# Optional eslint cache
64+
.eslintcache
65+
66+
# Optional REPL history
67+
.node_repl_history
68+
69+
# Output of 'npm pack'
70+
*.tgz
71+
72+
# Yarn Integrity file
73+
.yarn-integrity
74+
75+
# dotenv environment variables file
76+
.env
77+
78+
# parcel-bundler cache (https://parceljs.org/)
79+
.cache
80+
81+
# next.js build output
82+
.next
83+
84+
# nuxt.js build output
85+
.nuxt
86+
87+
# vuepress build output
88+
.vuepress/dist
89+
90+
# Serverless directories
91+
.serverless
92+
93+
### OSX ###
94+
# General
95+
.DS_Store
96+
.AppleDouble
97+
.LSOverride
98+
99+
# Icon must end with two \r
100+
Icon
101+
102+
# Thumbnails
103+
._*
104+
105+
# Files that might appear in the root of a volume
106+
.DocumentRevisions-V100
107+
.fseventsd
108+
.Spotlight-V100
109+
.TemporaryItems
110+
.Trashes
111+
.VolumeIcon.icns
112+
.com.apple.timemachine.donotpresent
113+
114+
# Directories potentially created on remote AFP share
115+
.AppleDB
116+
.AppleDesktop
117+
Network Trash Folder
118+
Temporary Items
119+
.apdisk
120+
121+
### Vim ###
122+
# Swap
123+
[._]*.s[a-v][a-z]
124+
[._]*.sw[a-p]
125+
[._]s[a-rt-v][a-z]
126+
[._]ss[a-gi-z]
127+
[._]sw[a-p]
128+
129+
# Session
130+
Session.vim
131+
132+
# Temporary
133+
.netrwhist
134+
# Auto-generated tag files
135+
tags
136+
# Persistent undo
137+
[._]*.un~
138+
139+
### Windows ###
140+
# Windows thumbnail cache files
141+
Thumbs.db
142+
ehthumbs.db
143+
ehthumbs_vista.db
144+
145+
# Dump file
146+
*.stackdump
147+
148+
# Folder config file
149+
[Dd]esktop.ini
150+
151+
# Recycle Bin used on file shares
152+
$RECYCLE.BIN/
153+
154+
# Windows Installer files
155+
*.cab
156+
*.msi
157+
*.msix
158+
*.msm
159+
*.msp
160+
161+
# Windows shortcuts
162+
*.lnk
163+
164+
# End of https://www.gitignore.io/api/vim,osx,node,linux,windows
165+
166+
### build ###
167+
dist

0 commit comments

Comments
 (0)