build: add lint makefile target

This commit is contained in:
2025-12-04 13:05:14 +02:00
parent cdd895d19a
commit 320874a61a
2 changed files with 8 additions and 0 deletions

View File

@@ -22,6 +22,10 @@ install: build
uninstall:
rm -f ~/.local/bin/$(BIN)
.PHONY: lint
lint:
golangci-lint run ./...
.PHONY: precommit-install
precommit-install:
@echo "Installing pre-commit hooks..."