diff options
author | 2023-04-29 11:48:57 -0700 | |
---|---|---|
committer | 2023-04-29 11:48:57 -0700 | |
commit | 83efe3481a5c001ae37116e8a5b0240552fa6c04 (patch) | |
tree | 8e9f85e1b16baf46e65ff54f091a715020a9327c /tools/tools.go | |
parent | 29d8e3f3835cc7543c390a8a8f5bdfd67bcd3c2d (diff) | |
download | sally-83efe3481a5c001ae37116e8a5b0240552fa6c04.tar.gz sally-83efe3481a5c001ae37116e8a5b0240552fa6c04.tar.zst sally-83efe3481a5c001ae37116e8a5b0240552fa6c04.zip |
ci: gofmt, golint => revive, update tools and actions (#87)
Fixes up the `make lint` target to also check
that all files are properly gofmt-ed,
replaces the deprecated `golint` check with `revive`,
and sets up dependabot to also update tools and actions regularly.
Diffstat (limited to 'tools/tools.go')
-rw-r--r-- | tools/tools.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools.go b/tools/tools.go index 5cfae35..437b62d 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -4,6 +4,6 @@ package tools import ( - _ "golang.org/x/lint/golint" + _ "github.com/mgechev/revive" _ "honnef.co/go/tools/cmd/staticcheck" ) |