diff --git a/Makefile b/Makefile index 6b5ccd3fb..400ce05cc 100644 --- a/Makefile +++ b/Makefile @@ -131,6 +131,10 @@ test-js: .build/deps-build-node.ok .PHONY: test test: lint test-go test-js +.PHONY: format-go +format-go: + gofmt -l -s -w . + .PHONY: format-js format-js: cd ui && ./node_modules/.bin/prettier --write 'src/**/*.js'