Skip to content

Commit bf11dd3

Browse files
committed
Updated gitignore
1 parent 84a7569 commit bf11dd3

File tree

1 file changed

+73
-11
lines changed

1 file changed

+73
-11
lines changed

.gitignore

Lines changed: 73 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
1-
# Created by https://www.gitignore.io/api/node
2-
# Edit at https://www.gitignore.io/?templates=node
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,node
5+
6+
### macOS ###
7+
# General
8+
.DS_Store
9+
.AppleDouble
10+
.LSOverride
11+
12+
# Icon must end with two \r
13+
Icon
14+
15+
16+
# Thumbnails
17+
._*
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
.com.apple.timemachine.donotpresent
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
334

435
### Node ###
536
# Logs
@@ -57,6 +88,15 @@ typings/
5788
# Optional eslint cache
5889
.eslintcache
5990

91+
# Optional stylelint cache
92+
.stylelintcache
93+
94+
# Microbundle cache
95+
.rpt2_cache/
96+
.rts2_cache_cjs/
97+
.rts2_cache_es/
98+
.rts2_cache_umd/
99+
60100
# Optional REPL history
61101
.node_repl_history
62102

@@ -69,28 +109,33 @@ typings/
69109
# dotenv environment variables file
70110
.env
71111
.env.test
112+
.env*.local
72113

73114
# parcel-bundler cache (https://parceljs.org/)
74115
.cache
116+
.parcel-cache
75117

76-
# next.js build output
118+
# Next.js build output
77119
.next
78120

79-
# nuxt.js build output
121+
# Nuxt.js build / generate output
80122
.nuxt
123+
dist
124+
125+
# Storybook build outputs
126+
.out
127+
.storybook-out
128+
storybook-static
81129

82130
# rollup.js default build output
83131
dist/
84132

85-
# Uncomment the public line if your project uses Gatsby
133+
# Gatsby files
134+
.cache/
135+
# Comment in the public line in if your project uses Gatsby and not Next.js
86136
# https://nextjs.org/blog/next-9-1#public-directory-support
87-
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
88137
# public
89138

90-
# Storybook build outputs
91-
.out
92-
.storybook-out
93-
94139
# vuepress build output
95140
.vuepress/dist
96141

@@ -103,8 +148,25 @@ dist/
103148
# DynamoDB Local files
104149
.dynamodb/
105150

151+
# TernJS port file
152+
.tern-port
153+
154+
# Stores VSCode versions used for testing VSCode extensions
155+
.vscode-test
156+
106157
# Temporary folders
107158
tmp/
108159
temp/
109160

110-
# End of https://www.gitignore.io/api/node
161+
### VisualStudioCode ###
162+
.vscode/*
163+
*.code-workspace
164+
165+
### VisualStudioCode Patch ###
166+
# Ignore all local history of files
167+
.history
168+
.ionide
169+
170+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node
171+
172+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)

0 commit comments

Comments
 (0)