1
+ # Project dependencies
2
+ .cache
3
+ node_modules
4
+ yarn-error.log
5
+ package-lock.json
6
+
7
+ # Build directory
8
+ /public
9
+ .DS_Store
10
+
11
+ # Created by https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode
12
+ # Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,visualstudiocode
13
+
14
+ # ## Linux ###
15
+ * ~
16
+
17
+ # temporary files which can be created if a process still has a handle open of a deleted file
18
+ .fuse_hidden *
19
+
20
+ # KDE directory preferences
21
+ .directory
22
+
23
+ # Linux trash folder which might appear on any partition or disk
24
+ .Trash- *
25
+
26
+ # .nfs files are created when an open file is removed but is still being accessed
27
+ .nfs *
28
+
29
+ # ## macOS ###
30
+ # General
31
+ .DS_Store
32
+ .AppleDouble
33
+ .LSOverride
34
+
35
+ # Icon must end with two \r
36
+ Icon
37
+
38
+ # Thumbnails
39
+ ._ *
40
+
41
+ # Files that might appear in the root of a volume
42
+ .DocumentRevisions-V100
43
+ .fseventsd
44
+ .Spotlight-V100
45
+ .TemporaryItems
46
+ .Trashes
47
+ .VolumeIcon.icns
48
+ .com.apple.timemachine.donotpresent
49
+
50
+ # Directories potentially created on remote AFP share
51
+ .AppleDB
52
+ .AppleDesktop
53
+ Network Trash Folder
54
+ Temporary Items
55
+ .apdisk
56
+
57
+ # ## Node ###
1
58
# Logs
2
59
logs
3
60
* .log
4
61
npm-debug.log *
5
62
yarn-debug.log *
6
63
yarn-error.log *
64
+ lerna-debug.log *
65
+
66
+ # Diagnostic reports (https://nodejs.org/api/report.html)
67
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
7
68
8
69
# Runtime data
9
70
pids
@@ -16,11 +77,12 @@ lib-cov
16
77
17
78
# Coverage directory used by tools like istanbul
18
79
coverage
80
+ * .lcov
19
81
20
82
# nyc test coverage
21
83
.nyc_output
22
84
23
- # Grunt intermediate storage (http ://gruntjs.com/creating-plugins#storing-task-files)
85
+ # Grunt intermediate storage (https ://gruntjs.com/creating-plugins#storing-task-files)
24
86
.grunt
25
87
26
88
# Bower dependency directory (https://bower.io/)
@@ -29,16 +91,19 @@ bower_components
29
91
# node-waf configuration
30
92
.lock-wscript
31
93
32
- # Compiled binary addons (http ://nodejs.org/api/addons.html)
94
+ # Compiled binary addons (https ://nodejs.org/api/addons.html)
33
95
build /Release
34
96
35
97
# Dependency directories
36
98
node_modules /
37
99
jspm_packages /
38
100
39
- # Typescript v1 declaration files
101
+ # TypeScript v1 declaration files
40
102
typings /
41
103
104
+ # TypeScript cache
105
+ * .tsbuildinfo
106
+
42
107
# Optional npm cache directory
43
108
.npm
44
109
@@ -51,19 +116,75 @@ typings/
51
116
# Output of 'npm pack'
52
117
* .tgz
53
118
119
+ # Yarn Integrity file
120
+ .yarn-integrity
121
+
54
122
# dotenv environment variables file
55
123
.env
124
+ .env.test
56
125
57
- # gatsby files
58
- .cache /
59
- public
126
+ # parcel-bundler cache (https://parceljs.org/)
127
+ .cache
60
128
61
- # Mac files
62
- .DS_Store
129
+ # next.js build output
130
+ .next
63
131
64
- # Yarn
65
- yarn-error.log
66
- .pnp /
67
- .pnp.js
68
- # Yarn Integrity file
69
- .yarn-integrity
132
+ # nuxt.js build output
133
+ .nuxt
134
+
135
+ # vuepress build output
136
+ .vuepress /dist
137
+
138
+ # Serverless directories
139
+ .serverless /
140
+
141
+ # FuseBox cache
142
+ .fusebox /
143
+
144
+ # DynamoDB Local files
145
+ .dynamodb /
146
+
147
+ # ## VisualStudioCode ###
148
+ .vscode /*
149
+ ! .vscode /settings.json
150
+ ! .vscode /tasks.json
151
+ ! .vscode /launch.json
152
+ ! .vscode /extensions.json
153
+
154
+ # ## VisualStudioCode Patch ###
155
+ # Ignore all local history of files
156
+ .history
157
+
158
+ # ## Windows ###
159
+ # Windows thumbnail cache files
160
+ Thumbs.db
161
+ Thumbs.db:encryptable
162
+ ehthumbs.db
163
+ ehthumbs_vista.db
164
+
165
+ # Dump file
166
+ * .stackdump
167
+
168
+ # Folder config file
169
+ [Dd ]esktop.ini
170
+
171
+ # Recycle Bin used on file shares
172
+ $RECYCLE.BIN /
173
+
174
+ # Windows Installer files
175
+ * .cab
176
+ * .msi
177
+ * .msix
178
+ * .msm
179
+ * .msp
180
+
181
+ # Windows shortcuts
182
+ * .lnk
183
+
184
+ # Gatsby
185
+ public
186
+ .cache
187
+ ** /public
188
+ ** /cache
189
+
190
+ # End of https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode
0 commit comments