1
+
2
+ # Created by https://www.toptal.com/developers/gitignore/api/node,macos,windows,dotenv
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,windows,dotenv
4
+
5
+ # ## dotenv ###
6
+ .env
7
+
8
+ # ## macOS ###
9
+ # General
10
+ .DS_Store
11
+ .AppleDouble
12
+ .LSOverride
13
+
14
+ # Icon must end with two \r
15
+ Icon
16
+
17
+
18
+ # Thumbnails
19
+ ._ *
20
+
21
+ # Files that might appear in the root of a volume
22
+ .DocumentRevisions-V100
23
+ .fseventsd
24
+ .Spotlight-V100
25
+ .TemporaryItems
26
+ .Trashes
27
+ .VolumeIcon.icns
28
+ .com.apple.timemachine.donotpresent
29
+
30
+ # Directories potentially created on remote AFP share
31
+ .AppleDB
32
+ .AppleDesktop
33
+ Network Trash Folder
34
+ Temporary Items
35
+ .apdisk
36
+
37
+ # ## Node ###
38
+ # Logs
39
+ logs
40
+ * .log
41
+ npm-debug.log *
42
+ yarn-debug.log *
43
+ yarn-error.log *
44
+ lerna-debug.log *
45
+
46
+ # Diagnostic reports (https://nodejs.org/api/report.html)
47
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
48
+
49
+ # Runtime data
50
+ pids
51
+ * .pid
52
+ * .seed
53
+ * .pid.lock
54
+
55
+ # Directory for instrumented libs generated by jscoverage/JSCover
56
+ lib-cov
57
+
58
+ # Coverage directory used by tools like istanbul
59
+ coverage
60
+ * .lcov
61
+
62
+ # nyc test coverage
63
+ .nyc_output
64
+
65
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
66
+ .grunt
67
+
68
+ # Bower dependency directory (https://bower.io/)
69
+ bower_components
70
+
71
+ # node-waf configuration
72
+ .lock-wscript
73
+
74
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
75
+ build /Release
76
+
77
+ # Dependency directories
78
+ node_modules /
79
+ jspm_packages /
80
+
81
+ # TypeScript v1 declaration files
82
+ typings /
83
+
84
+ # TypeScript cache
85
+ * .tsbuildinfo
86
+
87
+ # Optional npm cache directory
88
+ .npm
89
+
90
+ # Optional eslint cache
91
+ .eslintcache
92
+
93
+ # Optional stylelint cache
94
+ .stylelintcache
95
+
96
+ # Microbundle cache
97
+ .rpt2_cache /
98
+ .rts2_cache_cjs /
99
+ .rts2_cache_es /
100
+ .rts2_cache_umd /
101
+
102
+ # Optional REPL history
103
+ .node_repl_history
104
+
105
+ # Output of 'npm pack'
106
+ * .tgz
107
+
108
+ # Yarn Integrity file
109
+ .yarn-integrity
110
+
111
+ # dotenv environment variables file
112
+ .env.test
113
+ .env * .local
114
+
115
+ # parcel-bundler cache (https://parceljs.org/)
116
+ .cache
117
+ .parcel-cache
118
+
119
+ # Next.js build output
120
+ .next
121
+
122
+ # Nuxt.js build / generate output
123
+ .nuxt
124
+ dist
125
+
126
+ # Storybook build outputs
127
+ .out
128
+ .storybook-out
129
+ storybook-static
130
+
131
+ # rollup.js default build output
132
+ dist /
133
+
134
+ # Gatsby files
135
+ .cache /
136
+ # Comment in the public line in if your project uses Gatsby and not Next.js
137
+ # https://nextjs.org/blog/next-9-1#public-directory-support
138
+ # public
139
+
140
+ # vuepress build output
141
+ .vuepress /dist
142
+
143
+ # Serverless directories
144
+ .serverless /
145
+
146
+ # FuseBox cache
147
+ .fusebox /
148
+
149
+ # DynamoDB Local files
150
+ .dynamodb /
151
+
152
+ # TernJS port file
153
+ .tern-port
154
+
155
+ # Stores VSCode versions used for testing VSCode extensions
156
+ .vscode-test
157
+
158
+ # Temporary folders
159
+ tmp /
160
+ temp /
161
+
162
+ # ## Windows ###
163
+ # Windows thumbnail cache files
164
+ Thumbs.db
165
+ Thumbs.db:encryptable
166
+ ehthumbs.db
167
+ ehthumbs_vista.db
168
+
169
+ # Dump file
170
+ * .stackdump
171
+
172
+ # Folder config file
173
+ [Dd ]esktop.ini
174
+
175
+ # Recycle Bin used on file shares
176
+ $RECYCLE.BIN /
177
+
178
+ # Windows Installer files
179
+ * .cab
180
+ * .msi
181
+ * .msix
182
+ * .msm
183
+ * .msp
184
+
185
+ # Windows shortcuts
186
+ * .lnk
187
+
188
+ # End of https://www.toptal.com/developers/gitignore/api/node,macos,windows,dotenv
0 commit comments