github.com/onflow/flow-go@v0.33.17/.gitignore (about)

     1  /cmd/flow/flow
     2  /cmd/collection/collection
     3  /cmd/consensus/consensus
     4  /cmd/execution/execution
     5  /cmd/verification/verification
     6  /cmd/testclient/testclient
     7  /cmd/util/util
     8  /cmd/bootstrap/bootstrap
     9  
    10  
    11  # Test binary, build with `go test -c`
    12  *.test
    13  
    14  # Output of the go coverage tool, specifically when used with LiteIDE
    15  *.out
    16  
    17  # Output from logging to debug
    18  *.log
    19  
    20  # Output from binstat
    21  *.binstat.txt*
    22  
    23  # Output from pprof
    24  *.pprof.txt
    25  
    26  # Coverage artifacts
    27  coverage.zip
    28  coverage.txt
    29  cover.json
    30  cover-summary
    31  index.html
    32  
    33  # Since we have tooling that uses node
    34  node_modules
    35  
    36  .DS_Store
    37  
    38  flow.json
    39  flowdb
    40  
    41  # IDE related files
    42  .idea
    43  .vscode
    44  *.code-workspace
    45  git
    46  language/tools/vscode-extension/cadence-*.vsix
    47  language/tools/vscode-extension/out/*
    48  
    49  # Go mod ignores
    50  .history
    51  
    52  # Mock generation
    53  **/gomock_reflect*/*
    54  
    55  # command line tool
    56  read-badger
    57  read-protocol-state
    58  remove-execution-fork
    59  
    60  # generated key
    61  integration/localnet/observer-network-key
    62  
    63  # go workspace
    64  go.work
    65  go.work.sum
    66  
    67  # Ledger checkpoint status files
    68  **/checkpoint_status.json
    69  **/export_report.json
    70  
    71  # Local testing result files
    72  tps-results*.json