Make a make to ignore vendor files

This commit is contained in:
2025-07-28 20:16:31 +03:00
parent d5d73c1703
commit 19b699d92b

View File

@@ -48,8 +48,10 @@ test:
@go test ./... | grep -v '^?' || true
fmt:
@go fmt ./...
@$(GOPATH)/bin/goimports -w .
@go fmt ./internal/./...
@go fmt ./cmd/./...
@$(GOPATH)/bin/goimports -w ./internal/
@$(GOPATH)/bin/goimports -w ./cmd/
vet:
@go vet ./...