Skip to content

Commit

Permalink
tidy gomod and gitignore (#2082)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
  • Loading branch information
wagoodman committed Aug 31, 2023
1 parent 36d794f commit b454160
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 15 deletions.
34 changes: 24 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,46 @@
# local development tailoring
go.work
go.work.sum
.tool-versions

# app configuration
/.syft.yaml

# tool and bin directories
.tmp/
bin/
/bin
/.bin
/build
CHANGELOG.md
VERSION
/test/results
/dist
/snapshot
.server/

# changelog generation
CHANGELOG.md
VERSION

# IDE configuration
.vscode/
.idea/
.server/
.history/

# test related
*.fingerprint
/test/results
coverage.txt
*.log

# probable archives
.images
*.tar
*.jar
*.war
*.ear
*.jpi
*.hpi
*.zip
.idea/
*.iml
*.log
.images
.tmp/
coverage.txt
bin/

# Binaries for programs and plugins
*.exe
Expand Down
7 changes: 2 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require (
github.com/adrg/xdg v0.4.0 // indirect
github.com/anchore/bubbly v0.0.0-20230801194016-acdb4981b461
github.com/anchore/clio v0.0.0-20230823172630-c42d666061af
github.com/anchore/fangs v0.0.0-20230818131516-2186b10924fe
github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a
github.com/anchore/go-macholibre v0.0.0-20220308212642-53e6d0aaf6fb
github.com/anchore/go-testutils v0.0.0-20200925183923-d5f45b0d3c04
Expand Down Expand Up @@ -41,6 +42,7 @@ require (
github.com/google/uuid v1.3.1
github.com/gookit/color v1.5.4
github.com/hashicorp/go-multierror v1.1.1
github.com/iancoleman/strcase v0.3.0
github.com/invopop/jsonschema v0.7.0
github.com/jinzhu/copier v0.4.0
github.com/kastenhq/goversion v0.0.0-20230811215019-93b2f8823953
Expand Down Expand Up @@ -79,11 +81,6 @@ require (
golang.org/x/mod v0.12.0
golang.org/x/net v0.14.0
golang.org/x/term v0.11.0
)

require (
github.com/anchore/fangs v0.0.0-20230818131516-2186b10924fe
github.com/iancoleman/strcase v0.3.0
gopkg.in/yaml.v3 v3.0.1
modernc.org/sqlite v1.25.0
)
Expand Down

0 comments on commit b454160

Please sign in to comment.