From 7056f21715804a2c675ed5c2c807169d540ff0ba Mon Sep 17 00:00:00 2001 From: Sebastian Rivera Date: Tue, 22 Feb 2022 13:58:52 -0500 Subject: [PATCH] Added misspell and unparam linters --- .golangci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index fc61df4ff..11d8df010 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -16,6 +16,8 @@ linters: - revive #golint is deprecated and golangci-lint recommends to use revive instead https://github.com/mgechev/revive #other deprecated lint libraries: maligned, scopelint, interfacer - gocritic + - unparam + - misspell issues: exclude-rules: - path: _test\.go