diff --git a/Makefile b/Makefile index cd37642514..1fb4a40d71 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ XGO_VERSION := go-1.25.x AIR_PACKAGE ?= github.com/air-verse/air@v1 EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/v3/cmd/editorconfig-checker@v3 -GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.8.0 +GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.9.1 GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.4.0 GXZ_PACKAGE ?= github.com/ulikunitz/xz/cmd/gxz@v0.5.15 MISSPELL_PACKAGE ?= github.com/golangci/misspell/cmd/misspell@v0.7.0 diff --git a/build/code-batch-process.go b/build/code-batch-process.go index cc2ab68026..16d1273d96 100644 --- a/build/code-batch-process.go +++ b/build/code-batch-process.go @@ -181,7 +181,7 @@ func parseArgs() (mainOptions map[string]string, subCmd string, subArgs []string break } } - return + return mainOptions, subCmd, subArgs } func showUsage() { diff --git a/go.mod b/go.mod index 5597079416..eb871e24ae 100644 --- a/go.mod +++ b/go.mod @@ -287,6 +287,11 @@ require ( gopkg.in/yaml.v2 v2.4.0 // indirect ) +ignore ( + ./.venv + ./node_modules +) + replace github.com/jaytaylor/html2text => github.com/Necoro/html2text v0.0.0-20250804200300-7bf1ce1c7347 replace github.com/hashicorp/go-version => github.com/6543/go-version v1.3.1