github.com/lineaje-labs/syft@v0.98.1-0.20231227153149-9e393f60ff1b/.gitignore (about)

     1  # local development tailoring
     2  go.work
     3  go.work.sum
     4  .tool-versions
     5  
     6  # app configuration
     7  /.syft.yaml
     8  
     9  # tool and bin directories
    10  .tmp/
    11  bin/
    12  /bin
    13  /.bin
    14  /build
    15  /dist
    16  /snapshot
    17  /.tool
    18  /.task
    19  
    20  # changelog generation
    21  CHANGELOG.md
    22  VERSION
    23  
    24  # IDE configuration
    25  .vscode/
    26  .idea/
    27  .server/
    28  .history/
    29  
    30  # test related
    31  *.fingerprint
    32  /test/results
    33  coverage.txt
    34  *.log
    35  test/integration/test-fixtures/**/go.sum
    36  
    37  # probable archives
    38  .images
    39  *.tar
    40  *.jar
    41  *.war
    42  *.ear
    43  *.jpi
    44  *.hpi
    45  *.zip
    46  *.iml
    47  
    48  # Binaries for programs and plugins
    49  *.exe
    50  *.exe~
    51  *.dll
    52  *.so
    53  *.dylib
    54  
    55  # Test binary, build with `go test -c`
    56  *.test
    57  
    58  # Output of the go coverage tool, specifically when used with LiteIDE
    59  *.out
    60  
    61  # macOS Finder metadata
    62  .DS_STORE
    63  
    64  *.profile
    65  
    66  # attestation
    67  cosign.key
    68  cosign.pub
    69  
    70  # Byte-compiled object files for python
    71  __pycache__/
    72  *.py[cod]
    73  *$py.class