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