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 @go test ./... | grep -v '^?' || true
fmt: fmt:
@go fmt ./... @go fmt ./internal/./...
@$(GOPATH)/bin/goimports -w . @go fmt ./cmd/./...
@$(GOPATH)/bin/goimports -w ./internal/
@$(GOPATH)/bin/goimports -w ./cmd/
vet: vet:
@go vet ./... @go vet ./...