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,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[staticcheck]\e[0m"; go install honnef.co/go/tools/cmd/staticcheck@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
A
config/fish/functions/gotestcover.fish
@@ -0,0 +1,4 @@
+function gotestcover -a path + go test $path -coverprofile=cover + go tool cover -html=cover +end