1
+
2
+ # Created by https://www.toptal.com/developers/gitignore/api/macos,linux,node,git,react
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=macos,linux,node,git,react
4
+
5
+ # ## Git ###
6
+ # Created by git for backups. To disable backups in Git:
7
+ # $ git config --global mergetool.keepBackup false
8
+ * .orig
9
+
10
+ # Created by git when using merge tools for conflicts
11
+ * .BACKUP. *
12
+ * .BASE. *
13
+ * .LOCAL. *
14
+ * .REMOTE. *
15
+ * _BACKUP_ * .txt
16
+ * _BASE_ * .txt
17
+ * _LOCAL_ * .txt
18
+ * _REMOTE_ * .txt
19
+
20
+ # ## Linux ###
21
+ * ~
22
+
23
+ # temporary files which can be created if a process still has a handle open of a deleted file
24
+ .fuse_hidden *
25
+
26
+ # KDE directory preferences
27
+ .directory
28
+
29
+ # Linux trash folder which might appear on any partition or disk
30
+ .Trash- *
31
+
32
+ # .nfs files are created when an open file is removed but is still being accessed
33
+ .nfs *
34
+
35
+ # ## macOS ###
36
+ # General
37
+ .DS_Store
38
+ .AppleDouble
39
+ .LSOverride
40
+
41
+ # Icon must end with two \r
42
+ Icon
43
+
44
+
45
+ # Thumbnails
46
+ ._ *
47
+
48
+ # Files that might appear in the root of a volume
49
+ .DocumentRevisions-V100
50
+ .fseventsd
51
+ .Spotlight-V100
52
+ .TemporaryItems
53
+ .Trashes
54
+ .VolumeIcon.icns
55
+ .com.apple.timemachine.donotpresent
56
+
57
+ # Directories potentially created on remote AFP share
58
+ .AppleDB
59
+ .AppleDesktop
60
+ Network Trash Folder
61
+ Temporary Items
62
+ .apdisk
63
+
64
+ # ## Node ###
65
+ # Logs
66
+ logs
67
+ * .log
68
+ npm-debug.log *
69
+ yarn-debug.log *
70
+ yarn-error.log *
71
+ lerna-debug.log *
72
+ .pnpm-debug.log *
73
+
74
+ # Diagnostic reports (https://nodejs.org/api/report.html)
75
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
76
+
77
+ # Runtime data
78
+ pids
79
+ * .pid
80
+ * .seed
81
+ * .pid.lock
82
+
83
+ # Directory for instrumented libs generated by jscoverage/JSCover
84
+ lib-cov
85
+
86
+ # Coverage directory used by tools like istanbul
87
+ coverage
88
+ * .lcov
89
+
90
+ # nyc test coverage
91
+ .nyc_output
92
+
93
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
94
+ .grunt
95
+
96
+ # Bower dependency directory (https://bower.io/)
97
+ bower_components
98
+
99
+ # node-waf configuration
100
+ .lock-wscript
101
+
102
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
103
+ build /Release
104
+
105
+ # Dependency directories
106
+ node_modules /
107
+ jspm_packages /
108
+
109
+ # Snowpack dependency directory (https://snowpack.dev/)
110
+ web_modules /
111
+
112
+ # TypeScript cache
113
+ * .tsbuildinfo
114
+
115
+ # Optional npm cache directory
116
+ .npm
117
+
118
+ # Optional eslint cache
119
+ .eslintcache
120
+
121
+ # Microbundle cache
122
+ .rpt2_cache /
123
+ .rts2_cache_cjs /
124
+ .rts2_cache_es /
125
+ .rts2_cache_umd /
126
+
127
+ # Optional REPL history
128
+ .node_repl_history
129
+
130
+ # Output of 'npm pack'
131
+ * .tgz
132
+
133
+ # Yarn Integrity file
134
+ .yarn-integrity
135
+
136
+ # dotenv environment variables file
137
+ .env
138
+ .env.test
139
+ .env.production
140
+
141
+ # parcel-bundler cache (https://parceljs.org/)
142
+ .cache
143
+ .parcel-cache
144
+
145
+ # Next.js build output
146
+ .next
147
+ out
148
+
149
+ # Nuxt.js build / generate output
150
+ .nuxt
151
+ dist
152
+
153
+ # Gatsby files
154
+ .cache /
155
+ # Comment in the public line in if your project uses Gatsby and not Next.js
156
+ # https://nextjs.org/blog/next-9-1#public-directory-support
157
+ # public
158
+
159
+ # vuepress build output
160
+ .vuepress /dist
161
+
162
+ # Serverless directories
163
+ .serverless /
164
+
165
+ # FuseBox cache
166
+ .fusebox /
167
+
168
+ # DynamoDB Local files
169
+ .dynamodb /
170
+
171
+ # TernJS port file
172
+ .tern-port
173
+
174
+ # Stores VSCode versions used for testing VSCode extensions
175
+ .vscode-test
176
+
177
+ # yarn v2
178
+ .yarn /cache
179
+ .yarn /unplugged
180
+ .yarn /build-state.yml
181
+ .yarn /install-state.gz
182
+ .pnp. *
183
+
184
+ # ## Node Patch ###
185
+ # Serverless Webpack directories
186
+ .webpack /
187
+
188
+ # Optional stylelint cache
189
+ .stylelintcache
190
+
191
+ # SvelteKit build / generate output
192
+ .svelte-kit
193
+
194
+ # ## react ###
195
+ .DS_ *
196
+ ** /* .backup. *
197
+ ** /* .back. *
198
+
199
+ node_modules
200
+
201
+ * .sublime *
202
+
203
+ psd
204
+ thumb
205
+ sketch
206
+
207
+ # End of https://www.toptal.com/developers/gitignore/api/macos,linux,node,git,react
0 commit comments