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