Browse Source

golangci-lint: enable misspell, tweak configuration

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 6 năm trước cách đây
mục cha
commit
f41712c4be
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      hack/validate/golangci-lint.yml

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

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