add gitea-fmt back (#18526)

tokarchuk/v1.17
6543 3 years ago committed by GitHub
parent bb5f859ec0
commit 6f6b8491da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      Makefile
  2. 1
      modules/queue/queue_channel_test.go

@ -231,10 +231,13 @@ clean:
.PHONY: 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; \
fi
gofumpt -w -l -extra -lang 1.16 .
@gofumpt -w -l -extra -lang 1.16 .
.PHONY: vet
vet:

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

Loading…
Cancel
Save