github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/.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  
    36  # probable archives
    37  .images
    38  *.tar
    39  *.jar
    40  *.war
    41  *.ear
    42  *.jpi
    43  *.hpi
    44  *.zip
    45  *.iml
    46  
    47  # Binaries for programs and plugins
    48  *.exe
    49  *.exe~
    50  *.dll
    51  *.so
    52  *.dylib
    53  
    54  # Test binary, build with `go test -c`
    55  *.test
    56  
    57  # Output of the go coverage tool, specifically when used with LiteIDE
    58  *.out
    59  
    60  # macOS Finder metadata
    61  .DS_STORE
    62  
    63  *.profile
    64  
    65  # attestation
    66  cosign.key
    67  cosign.pub
    68  
    69  # Byte-compiled object files for python
    70  __pycache__/
    71  *.py[cod]
    72  *$py.class