Add race writer

This commit is contained in:
世界 2022-08-13 10:48:38 +08:00
parent 05f9836bff
commit eb2fad956a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 57 additions and 7 deletions

21
Makefile Normal file
View file

@ -0,0 +1,21 @@
fmt:
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
lint:
GOOS=linux golangci-lint run ./...
GOOS=windows golangci-lint run ./...
GOOS=darwin golangci-lint run ./...
GOOS=freebsd golangci-lint run ./...
test:
go test -v .
update:
git fetch
git reset FETCH_HEAD --hard
git clean -fdx