Skip to content

Commit

Permalink
gofumpt v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Oct 11, 2024
1 parent 300ce98 commit 867f95c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
},
"gopls": {
"usePlaceholders": false,
"staticcheck": true
"staticcheck": true,
"formatting.gofumpt": true
},
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
Expand Down
3 changes: 3 additions & 0 deletions alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ARG MOCKERY_VERSION=v2.46.2
ARG GOMOCK_VERSION=v1.6.0
ARG MOCKGEN_VERSION=v1.6.0
ARG GOPLS_VERSION=v0.16.2
ARG GOFUMPT_VERSION=v0.7.0
ARG GOLANGCILINT_VERSION=v1.61.0
ARG IMPL_VERSION=v1.2.0
ARG GOPKGS_VERSION=v2.1.2
Expand All @@ -28,6 +29,7 @@ FROM qmcgaw/binpot:mockery-${MOCKERY_VERSION} AS mockery
FROM qmcgaw/binpot:gomock-${GOMOCK_VERSION} AS gomock
FROM qmcgaw/binpot:mockgen-${MOCKGEN_VERSION} AS mockgen
FROM qmcgaw/binpot:gopls-${GOPLS_VERSION} AS gopls
FROM qmcgaw/binpot:gofumpt-${GOFUMPT_VERSION} AS gofumpt
FROM qmcgaw/binpot:golangci-lint-${GOLANGCILINT_VERSION} AS golangci-lint
FROM qmcgaw/binpot:impl-${IMPL_VERSION} AS impl
FROM qmcgaw/binpot:gopkgs-${GOPKGS_VERSION} AS gopkgs
Expand Down Expand Up @@ -70,6 +72,7 @@ COPY --from=mockery /bin /go/bin/mockery
COPY --from=gomock /bin /go/bin/gomock
COPY --from=mockgen /bin /go/bin/mockgen
COPY --from=gopls /bin /go/bin/gopls
COPY --from=gofumpt /bin /go/bin/gofumpt
COPY --from=golangci-lint /bin /go/bin/golangci-lint
COPY --from=impl /bin /go/bin/impl
COPY --from=gopkgs /bin /go/bin/gopkgs
Expand Down
3 changes: 3 additions & 0 deletions debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ARG MOCKERY_VERSION=v2.46.2
ARG GOMOCK_VERSION=v1.6.0
ARG MOCKGEN_VERSION=v1.6.0
ARG GOPLS_VERSION=v0.16.2
ARG GOFUMPT_VERSION=v0.7.0
ARG GOLANGCILINT_VERSION=v1.61.0
ARG IMPL_VERSION=v1.2.0
ARG GOPKGS_VERSION=v2.1.2
Expand All @@ -28,6 +29,7 @@ FROM qmcgaw/binpot:mockery-${MOCKERY_VERSION} AS mockery
FROM qmcgaw/binpot:gomock-${GOMOCK_VERSION} AS gomock
FROM qmcgaw/binpot:mockgen-${MOCKGEN_VERSION} AS mockgen
FROM qmcgaw/binpot:gopls-${GOPLS_VERSION} AS gopls
FROM qmcgaw/binpot:gofumpt-${GOFUMPT_VERSION} AS gofumpt
FROM qmcgaw/binpot:golangci-lint-${GOLANGCILINT_VERSION} AS golangci-lint
FROM qmcgaw/binpot:impl-${IMPL_VERSION} AS impl
FROM qmcgaw/binpot:gopkgs-${GOPKGS_VERSION} AS gopkgs
Expand Down Expand Up @@ -74,6 +76,7 @@ COPY --from=mockery /bin /go/bin/mockery
COPY --from=gomock /bin /go/bin/gomock
COPY --from=mockgen /bin /go/bin/mockgen
COPY --from=gopls /bin /go/bin/gopls
COPY --from=gofumpt /bin /go/bin/gofumpt
COPY --from=golangci-lint /bin /go/bin/golangci-lint
COPY --from=impl /bin /go/bin/impl
COPY --from=gopkgs /bin /go/bin/gopkgs
Expand Down

0 comments on commit 867f95c

Please sign in to comment.