Add range api

This commit is contained in:
世界 2022-08-14 22:58:30 +08:00
parent eb2fad956a
commit 4f2b872a8c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 330 additions and 20 deletions

View file

@ -1,10 +1,11 @@
fmt:
gofumpt -l -w .
gofmt -s -w .
gci write -s "standard,prefix(github.com/sagernet/),default" .
@gofumpt -l -w .
@gofmt -s -w .
@gci write -s "standard,prefix(github.com/sagernet/),default" .
lint_install:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
fmt_install:
go install -v mvdan.cc/gofumpt@latest
go install -v github.com/daixiang0/gci@v0.4.0
lint:
GOOS=linux golangci-lint run ./...
@ -12,10 +13,8 @@ lint:
GOOS=darwin golangci-lint run ./...
GOOS=freebsd golangci-lint run ./...
test:
go test -v .
lint_install:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
update:
git fetch
git reset FETCH_HEAD --hard
git clean -fdx
test:
go test -v ./...