github.com/uber/kraken@v0.1.4/.gitignore (about)

     1  .cache
     2  .idea
     3  .tmp
     4  .vscode
     5  *.test
     6  *.go~
     7  vendor/
     8  
     9  # Fake source dir for jenkins and debian, which uses repo root as GOPATH
    10  ^bin/
    11  pkg/
    12  
    13  # Binary executable
    14  tracker/tracker
    15  agent/agent
    16  origin/origin
    17  proxy/proxy
    18  build-index/build-index
    19  tools/bin/puller/puller
    20  tools/bin/reload/reload
    21  tools/bin/reload-config/reload-config
    22  tools/bin/visualization/visualization
    23  tools/bin/testfs/testfs
    24  tools/bin/pexchange/pexchange
    25  tools/bin/trackerload/trackerload
    26  
    27  # tmp migration files
    28  [0-9]*_-dir.go
    29  
    30  *.xml
    31  *.pyc
    32  venv
    33  
    34  # Golang coverage files
    35  *.out
    36  # Golang test files
    37  *.test
    38  # Visual coverage report
    39  coverage.html
    40  # codecov coverage file
    41  coverage.txt
    42  
    43  # test db data
    44  db/data
    45  
    46  # Test configuratino generated from templates.
    47  config/*/test*.yaml
    48  
    49  # For vim users.
    50  tags
    51  
    52  # For engdoc.
    53  .DS_Store
    54  docs/_build/
    55  env*
    56  *.pyc
    57  *.pickle
    58  
    59  # For integration tests.
    60  .tmptest/