gemini-browser

A text-based gemini browser
git clone git://git.laack.co/gemini-browser.git
Log | Files | Refs | README

.gitignore (910B)


      1 
      2 # Created by https://www.toptal.com/developers/gitignore/api/code,linux,go
      3 # Edit at https://www.toptal.com/developers/gitignore?templates=code,linux,go
      4 
      5 ### Code ###
      6 .vscode/*
      7 !.vscode/settings.json
      8 !.vscode/tasks.json
      9 !.vscode/launch.json
     10 !.vscode/extensions.json
     11 
     12 ### Go ###
     13 # Binaries for programs and plugins
     14 *.exe
     15 *.exe~
     16 *.dll
     17 *.so
     18 *.dylib
     19 
     20 # Test binary, built with `go test -c`
     21 *.test
     22 
     23 # Output of the go coverage tool, specifically when used with LiteIDE
     24 *.out
     25 
     26 ### Go Patch ###
     27 /vendor/
     28 /Godeps/
     29 
     30 ### Linux ###
     31 *~
     32 
     33 # temporary files which can be created if a process still has a handle open of a deleted file
     34 .fuse_hidden*
     35 
     36 # KDE directory preferences
     37 .directory
     38 
     39 # Linux trash folder which might appear on any partition or disk
     40 .Trash-*
     41 
     42 # .nfs files are created when an open file is removed but is still being accessed
     43 .nfs*
     44 
     45 # End of https://www.toptal.com/developers/gitignore/api/code,linux,go