From e6cec20420abf06c753c84cad3274da802a7babf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 9 Feb 2023 21:14:09 +0800 Subject: [PATCH] Fix lint --- .golangci.yml | 13 +++++++------ Makefile | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 93200b0..4133a1d 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -3,14 +3,15 @@ linters: enable: - gofumpt - govet -# - gci + - gci - staticcheck linters-settings: -# gci: -# sections: -# - standard -# - prefix(github.com/sagernet/) -# - default + gci: + custom-order: true + sections: + - standard + - prefix(github.com/sagernet/) + - default staticcheck: go: '1.20' diff --git a/Makefile b/Makefile index f7a8a53..a837f60 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ fmt: @gofumpt -l -w . @gofmt -s -w . - @gci write -s "standard,prefix(github.com/sagernet/),default" . + @gci write --custom-order -s "standard,prefix(github.com/sagernet/),default" . fmt_install: go install -v mvdan.cc/gofumpt@latest - go install -v github.com/daixiang0/gci@v0.4.0 + go install -v github.com/daixiang0/gci@latest lint: GOOS=linux golangci-lint run ./...