chore: add make style target for gofmt formatting

This commit is contained in:
grdddj 2024-10-15 12:07:16 +02:00 committed by Martin
parent d6aaa09e06
commit 04a5d8d95d

View File

@ -80,3 +80,6 @@ clean-bin-image:
clean-deb-image: clean-deb-image:
- docker rmi $(DEB_IMAGE) - docker rmi $(DEB_IMAGE)
style:
find . -name "*.go" -exec gofmt -w {} \;