nt

A sensible note-taking program
git clone git://git.laack.co/nt.git
Log | Files | Refs | README

.gitignore (1720B)


      1 # Created by https://www.toptal.com/developers/gitignore/api/code,go,linux,macos,windows
      2 # Edit at https://www.toptal.com/developers/gitignore?templates=code,go,linux,macos,windows
      3 
      4 ### Code ###
      5 .vscode/*
      6 !.vscode/tasks.json
      7 !.vscode/launch.json
      8 *.code-workspace
      9 
     10 ### Go ###
     11 # Binaries for programs and plugins
     12 *.exe
     13 *.exe~
     14 *.dll
     15 *.so
     16 *.dylib
     17 
     18 # Test binary, built with `go test -c`
     19 *.test
     20 
     21 # Output of the go coverage tool, specifically when used with LiteIDE
     22 *.out
     23 
     24 # Dependency directories (remove the comment below to include it)
     25 # vendor/
     26 
     27 ### Go Patch ###
     28 /vendor/
     29 /Godeps/
     30 
     31 ### Linux ###
     32 *~
     33 
     34 # temporary files which can be created if a process still has a handle open of a deleted file
     35 .fuse_hidden*
     36 
     37 # KDE directory preferences
     38 .directory
     39 
     40 # Linux trash folder which might appear on any partition or disk
     41 .Trash-*
     42 
     43 # .nfs files are created when an open file is removed but is still being accessed
     44 .nfs*
     45 
     46 ### macOS ###
     47 # General
     48 .DS_Store
     49 .AppleDouble
     50 .LSOverride
     51 
     52 # Icon must end with two \r
     53 Icon
     54 
     55 
     56 # Thumbnails
     57 ._*
     58 
     59 # Files that might appear in the root of a volume
     60 .DocumentRevisions-V100
     61 .fseventsd
     62 .Spotlight-V100
     63 .TemporaryItems
     64 .Trashes
     65 .VolumeIcon.icns
     66 .com.apple.timemachine.donotpresent
     67 
     68 # Directories potentially created on remote AFP share
     69 .AppleDB
     70 .AppleDesktop
     71 Network Trash Folder
     72 Temporary Items
     73 .apdisk
     74 
     75 ### Windows ###
     76 # Windows thumbnail cache files
     77 Thumbs.db
     78 Thumbs.db:encryptable
     79 ehthumbs.db
     80 ehthumbs_vista.db
     81 
     82 # Dump file
     83 *.stackdump
     84 
     85 # Folder config file
     86 [Dd]esktop.ini
     87 
     88 # Recycle Bin used on file shares
     89 $RECYCLE.BIN/
     90 
     91 # Windows Installer files
     92 *.cab
     93 *.msi
     94 *.msix
     95 *.msm
     96 *.msp
     97 
     98 # Windows shortcuts
     99 *.lnk
    100 
    101 # End of https://www.toptal.com/developers/gitignore/api/code,go,linux,macos,windows