Skip to content

Commit

Permalink
Merge pull request #31 from PDOK/tidy
Browse files Browse the repository at this point in the history
Tidy
  • Loading branch information
rkettelerij authored Feb 29, 2024
2 parents 5a91938 + 54cccb5 commit a47800e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/lint-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:

- uses: actions/checkout@v3

- name: tidy
uses: katexochen/go-tidy-check@v2

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
26 changes: 10 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,42 @@ module github.com/pdok/texel

go 1.21.6

require (
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/go-spatial/geom v0.0.0-20220918193402-3cd2f5a9a082
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/urfave/cli/v2 v2.25.7
)

require (
github.com/carlmjohnson/versioninfo v0.22.5
github.com/creasty/defaults v1.7.0
github.com/go-playground/validator/v10 v10.16.0
github.com/go-spatial/geom v0.0.0-20220918193402-3cd2f5a9a082
github.com/iancoleman/strcase v0.3.0
github.com/muesli/reflow v0.3.0
github.com/perimeterx/marshmallow v1.1.5
github.com/stretchr/testify v1.8.4
github.com/tobshub/go-sortedmap v1.0.3
github.com/urfave/cli/v2 v2.25.7
github.com/wk8/go-ordered-map/v2 v2.1.8
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
)

require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/gdey/errors v0.0.0-20190426172550-8ebd5bc891fb // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-runewidth v0.0.12 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

require (
github.com/creasty/defaults v1.7.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdey/errors v0.0.0-20190426172550-8ebd5bc891fb // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
)

0 comments on commit a47800e

Please sign in to comment.