You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .gitignore
+349-5Lines changed: 349 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,350 @@
1
-
/.gradle
2
-
/build
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/windows,visualstudiocode,forgegradle,gradle,intellij,intellij+all,intellij+iml,java,linux,macos
4
+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,forgegradle,gradle,intellij,intellij+all,intellij+iml,java,linux,macos
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
246
+
hs_err_pid*
247
+
248
+
### Linux ###
249
+
*~
250
+
251
+
# temporary files which can be created if a process still has a handle open of a deleted file
252
+
.fuse_hidden*
253
+
254
+
# KDE directory preferences
255
+
.directory
256
+
257
+
# Linux trash folder which might appear on any partition or disk
258
+
.Trash-*
259
+
260
+
# .nfs files are created when an open file is removed but is still being accessed
261
+
.nfs*
262
+
263
+
### macOS ###
264
+
# General
265
+
.DS_Store
266
+
.AppleDouble
267
+
.LSOverride
268
+
269
+
# Icon must end with two \r
270
+
Icon
271
+
272
+
# Thumbnails
273
+
._*
274
+
275
+
# Files that might appear in the root of a volume
276
+
.DocumentRevisions-V100
277
+
.fseventsd
278
+
.Spotlight-V100
279
+
.TemporaryItems
280
+
.Trashes
281
+
.VolumeIcon.icns
282
+
.com.apple.timemachine.donotpresent
283
+
284
+
# Directories potentially created on remote AFP share
285
+
.AppleDB
286
+
.AppleDesktop
287
+
NetworkTrashFolder
288
+
TemporaryItems
289
+
.apdisk
290
+
291
+
### VisualStudioCode ###
292
+
.vscode/*
293
+
!.vscode/tasks.json
294
+
!.vscode/launch.json
295
+
*.code-workspace
296
+
297
+
### VisualStudioCode Patch ###
298
+
# Ignore all local history of files
299
+
.history
300
+
.ionide
301
+
302
+
### Windows ###
303
+
# Windows thumbnail cache files
304
+
Thumbs.db
305
+
Thumbs.db:encryptable
306
+
ehthumbs.db
307
+
ehthumbs_vista.db
308
+
309
+
# Dump file
310
+
*.stackdump
311
+
312
+
# Folder config file
313
+
[Dd]esktop.ini
314
+
315
+
# Recycle Bin used on file shares
316
+
$RECYCLE.BIN/
317
+
318
+
# Windows Installer files
319
+
*.cab
320
+
*.msi
321
+
*.msix
322
+
*.msm
323
+
*.msp
324
+
325
+
# Windows shortcuts
326
+
*.lnk
327
+
328
+
### Gradle ###
329
+
.gradle
330
+
build/
331
+
332
+
# Ignore Gradle GUI config
333
+
gradle-app.setting
334
+
335
+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
336
+
!gradle-wrapper.jar
337
+
338
+
# Cache of project
339
+
.gradletasknamecache
340
+
341
+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
342
+
# gradle/wrapper/gradle-wrapper.properties
343
+
344
+
### Gradle Patch ###
345
+
**/build/
346
+
347
+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,forgegradle,gradle,intellij,intellij+all,intellij+iml,java,linux,macos
348
+
349
+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
0 commit comments