github.com/leg100/ots@v0.0.7-0.20210919080622-034055ced4bd/.gitignore (about)

     1  # modd
     2  modd.conf
     3  # logs
     4  *.log
     5  # keys,certs
     6  *.pem
     7  *.crt
     8  # sqlite db
     9  *.db
    10  *-wal
    11  *-shm
    12  # bins
    13  /_build
    14  # terraform
    15  /.terraformignore
    16  .terraform
    17  # direnv
    18  .envrc
    19  # Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
    20  ### Emacs ###
    21  # -*- mode: gitignore; -*-
    22  *~
    23  \#*\#
    24  /.emacs.desktop
    25  /.emacs.desktop.lock
    26  *.elc
    27  auto-save-list
    28  tramp
    29  .\#*
    30  # Org-mode
    31  .org-id-locations
    32  *_archive
    33  # flymake-mode
    34  *_flymake.*
    35  # eshell files
    36  /eshell/history
    37  /eshell/lastdir
    38  # elpa packages
    39  /elpa/
    40  # reftex files
    41  *.rel
    42  # AUCTeX auto folder
    43  /auto/
    44  # cask packages
    45  .cask/
    46  dist/
    47  # Flycheck
    48  flycheck_*.el
    49  # server auth directory
    50  /server/
    51  # projectiles files
    52  .projectile
    53  projectile-bookmarks.eld
    54  # directory configuration
    55  .dir-locals.el
    56  # saveplace
    57  places
    58  # url cache
    59  url/cache/
    60  # cedet
    61  ede-projects.el
    62  # smex
    63  smex-items
    64  # company-statistics
    65  company-statistics-cache.el
    66  # anaconda-mode
    67  anaconda-mode/
    68  ### Go ###
    69  # Binaries for programs and plugins
    70  *.exe
    71  *.exe~
    72  *.dll
    73  *.so
    74  *.dylib
    75  # Test binary, build with 'go test -c'
    76  *.test
    77  # Output of the go coverage tool, specifically when used with LiteIDE
    78  *.out
    79  ### Vim ###
    80  # swap
    81  .sw[a-p]
    82  .*.sw[a-p]
    83  # session
    84  Session.vim
    85  # temporary
    86  .netrwhist
    87  # auto-generated tag files
    88  tags
    89  ### VisualStudioCode ###
    90  .vscode/*
    91  .history
    92  # allow anything under testdata
    93  !**/testdata/**