瀏覽代碼

golangci-lint: enable misspell, tweak configuration

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 5 年之前
父節點
當前提交
f41712c4be
共有 1 個文件被更改,包括 7 次插入0 次删除
  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