feat: ignore docs in make format

This commit is contained in:
2025-11-21 17:02:06 +01:00
parent 62d466e4fa
commit 3ffd83b0fb
2 changed files with 3 additions and 2 deletions

View File

@@ -44,8 +44,8 @@ clean:
rm -fr dist/*
format:
$(PRETTIER) -w .
$(GO) fmt ./...
$(PRETTIER) -w . --ignore-path .prettierignore
$(GO) fmt $(shell $(GO) list ./... | grep -v 'docs')
lint:
$(GOLANGCI_LINT) run