1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-24 04:06:10 +02:00

add gitea-fmt back (#18526)

This commit is contained in:
6543 2022-02-01 18:43:09 +01:00 committed by GitHub
parent bb5f859ec0
commit 6f6b8491da
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -231,10 +231,13 @@ clean:
.PHONY: fmt .PHONY: fmt
fmt: fmt:
@hash xgogofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ @echo "Running gitea-fmt(with gofmt)..."
@$(GO) run build/code-batch-process.go gitea-fmt -s -w '{file-list}'
@echo "Running gofumpt"
@hash gofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) install mvdan.cc/gofumpt@latest; \ $(GO) install mvdan.cc/gofumpt@latest; \
fi fi
gofumpt -w -l -extra -lang 1.16 . @gofumpt -w -l -extra -lang 1.16 .
.PHONY: vet .PHONY: vet
vet: vet:

View File

@ -10,6 +10,7 @@ import (
"time" "time"
"code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/log"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )