gofump don't touch code generated files (#1654)

`make format` did touch code generated files witch creates a mess from
time to time ...

this change it ...
This commit is contained in:
6543 2023-03-19 22:56:16 +01:00 committed by GitHub
parent 92614dfb1e
commit ed78ba78fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,3 @@
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./.git/*")
GO_PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
TARGETOS ?= linux
@ -83,7 +82,7 @@ vendor: ## Update the vendor directory
go mod vendor
format: install-tools ## Format source code
@gofumpt -extra -w ${GOFILES_NOVENDOR}
@gofumpt -extra -w .
.PHONY: clean
clean: ## Clean build artifacts