Browse Source

golangci-lint: enable misspell, tweak configuration

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 5 years ago
parent
commit
f41712c4be
1 changed files with 7 additions and 0 deletions
  1. 7 0
      hack/validate/golangci-lint.yml

+ 7 - 0
hack/validate/golangci-lint.yml

@@ -8,6 +8,7 @@ linters:
     - gosimple
     - gosimple
     - govet
     - govet
     - ineffassign
     - ineffassign
+    - misspell
     - unconvert
     - unconvert
 
 
   disable:
   disable:
@@ -33,6 +34,12 @@ linters-settings:
 
 
 issues:
 issues:
   exclude-rules:
   exclude-rules:
+    # Exclude some linters from running on tests files.
+    - path: _test\.go
+      linters:
+        - errcheck
+        - gosec
+
     - text: "G201: SQL string formatting"
     - text: "G201: SQL string formatting"
       linters:
       linters:
         - gosec
         - gosec