2 files changed,
5 insertions(+),
0 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2026-02-18 00:04:01 +0200
Parent:
cb4e716
M
bin/go-install-bins.sh
··· 1 1 #!/usr/bin/env bash 2 2 echo -e "\e[32m[gopls]\e[0m"; go install golang.org/x/tools/gopls@latest 3 +echo -e "\e[32m[staticcheck]\e[0m"; go install honnef.co/go/tools/cmd/staticcheck@latest 3 4 echo -e "\e[32m[revive]\e[0m"; go install github.com/mgechev/revive@latest 4 5 echo -e "\e[32m[gofumpt]\e[0m"; go install mvdan.cc/gofumpt@latest 5 6 echo -e "\e[32m[goimports]\e[0m"; go install golang.org/x/tools/cmd/goimports@latest
A
config/fish/functions/gotestcover.fish
··· 1 +function gotestcover -a path 2 + go test $path -coverprofile=cover 3 + go tool cover -html=cover 4 +end