diff --git a/.golangci.yml b/.golangci.yml index 7b74f7273..4fb6f5e1f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -64,6 +64,10 @@ linters-settings: disabled-checks: - commentFormatting - deprecatedComment + staticcheck: + # Only enable a single check to start. + # I(jrasell) will work on enabling additional checks when possible. + checks: ["ST1020"] issues: exclude: @@ -87,6 +91,7 @@ linters: - gofmt - gosimple - depguard + - staticcheck # Stretch Goal #- maligned fast: false