From ae06b36e7a6497893512b2848a7b9f84f92dab5d Mon Sep 17 00:00:00 2001 From: ashmrtn <3891298+ashmrtn@users.noreply.github.com> Date: Mon, 29 Aug 2022 16:14:11 -0700 Subject: [PATCH] Enable wsl linter for most of codebase (#679) Turn on now to keep from cycle of fixing most code, waiting for some PRs in other packages, and then needing to do more fixups. Will slowly enable on various files in connector package until we get full coverage. --- src/.golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/.golangci.yml b/src/.golangci.yml index 2e48629a6..8aca9690f 100644 --- a/src/.golangci.yml +++ b/src/.golangci.yml @@ -9,6 +9,7 @@ linters: - lll - misspell - revive + - wsl linters-settings: gci: @@ -78,3 +79,6 @@ issues: linters: - revive text: "import-shadowing:.*'suite' shadows" + # Temporarily skip linting wsl on `connector` package until fixes are merged. + - path: internal/connector/ + linters: wsl