diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-07-30 13:00:37 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-04 21:58:06 +0200 |
commit | 57de50b7d44a077914195c6006af4db3c9c6f1cc (patch) | |
tree | 0f865926fba4a246d6fb0edafa4517c28a9219e4 /tools.go | |
parent | 70bfcfef42578079f211d87cddc49519ee3503dc (diff) | |
download | aerc-57de50b7d44a077914195c6006af4db3c9c6f1cc.tar.gz |
lint: add golangci-lint to the linters
go vet has been removed from the lint step as it is run by the new
linter.
Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'tools.go')
-rw-r--r-- | tools.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools.go b/tools.go new file mode 100644 index 00000000..e59cfdda --- /dev/null +++ b/tools.go @@ -0,0 +1,5 @@ +//go:build tools + +package main + +import _ "github.com/golangci/golangci-lint/cmd/golangci-lint" |