mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-08-24 19:39:16 +02:00
Pass only Git-tracked Go files to gofumpt
This commit is contained in:
4
Makefile
4
Makefile
@@ -34,9 +34,11 @@ test: unit-test integration-test-all
|
|||||||
generate:
|
generate:
|
||||||
go generate ./...
|
go generate ./...
|
||||||
|
|
||||||
|
# If you execute `gofumpt -l -w .`, it will format all Go files in the current directory, including `test/_results/*` files.
|
||||||
|
# We pass only Git-tracked Go files to gofumpt because we don't want to format the test results or get errors from it.
|
||||||
.PHONY: format
|
.PHONY: format
|
||||||
format:
|
format:
|
||||||
gofumpt -l -w .
|
git ls-files '*.go' ':!vendor' | xargs gofumpt -l -w
|
||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
|
Reference in New Issue
Block a user