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
3
34
4
35
# ## Node ###
5
36
# Logs
@@ -57,6 +88,15 @@ typings/
57
88
# Optional eslint cache
58
89
.eslintcache
59
90
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
+
60
100
# Optional REPL history
61
101
.node_repl_history
62
102
@@ -69,28 +109,33 @@ typings/
69
109
# dotenv environment variables file
70
110
.env
71
111
.env.test
112
+ .env * .local
72
113
73
114
# parcel-bundler cache (https://parceljs.org/)
74
115
.cache
116
+ .parcel-cache
75
117
76
- # next .js build output
118
+ # Next .js build output
77
119
.next
78
120
79
- # nuxt .js build output
121
+ # Nuxt .js build / generate output
80
122
.nuxt
123
+ dist
124
+
125
+ # Storybook build outputs
126
+ .out
127
+ .storybook-out
128
+ storybook-static
81
129
82
130
# rollup.js default build output
83
131
dist /
84
132
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
86
136
# https://nextjs.org/blog/next-9-1#public-directory-support
87
- # https://create-react-app.dev/docs/using-the-public-folder/#docsNav
88
137
# public
89
138
90
- # Storybook build outputs
91
- .out
92
- .storybook-out
93
-
94
139
# vuepress build output
95
140
.vuepress /dist
96
141
@@ -103,8 +148,25 @@ dist/
103
148
# DynamoDB Local files
104
149
.dynamodb /
105
150
151
+ # TernJS port file
152
+ .tern-port
153
+
154
+ # Stores VSCode versions used for testing VSCode extensions
155
+ .vscode-test
156
+
106
157
# Temporary folders
107
158
tmp /
108
159
temp /
109
160
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