瀏覽代碼

add gitea-fmt back (#18526)

tags/v1.18.0-dev
6543 2 年之前
父節點
當前提交
6f6b8491da
沒有連結到貢獻者的電子郵件帳戶。
共有 2 個檔案被更改,包括 6 行新增2 行删除
  1. 5
    2
      Makefile
  2. 1
    0
      modules/queue/queue_channel_test.go

+ 5
- 2
Makefile 查看文件

@@ -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:

+ 1
- 0
modules/queue/queue_channel_test.go 查看文件

@@ -10,6 +10,7 @@ import (
"time"

"code.gitea.io/gitea/modules/log"

"github.com/stretchr/testify/assert"
)


Loading…
取消
儲存