From 0ce31d478debccb497f65d0177c48890ea9732a5 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Tue, 6 Jan 2026 23:39:45 +0200 Subject: [PATCH] bin: install revive --- bin/go-install-bins.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/go-install-bins.sh b/bin/go-install-bins.sh index 0a43ab9..2c3e9b8 100755 --- a/bin/go-install-bins.sh +++ b/bin/go-install-bins.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash echo -e "\e[32m[gopls]\e[0m"; go install golang.org/x/tools/gopls@latest +echo -e "\e[32m[revive]\e[0m"; go install github.com/mgechev/revive@latest echo -e "\e[32m[gofumpt]\e[0m"; go install mvdan.cc/gofumpt@latest echo -e "\e[32m[goimports]\e[0m"; go install golang.org/x/tools/cmd/goimports@latest echo -e "\e[32m[golines]\e[0m"; go install github.com/segmentio/golines@latest