We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2a86a1 commit e5f1a0aCopy full SHA for e5f1a0a
.github/workflows/verify.yml
@@ -29,4 +29,3 @@ jobs:
29
uses: golangci/golangci-lint-action@v3
30
with:
31
version: v1.53
32
- args: --timeout=5m
.golangci.yml
@@ -1,3 +1,13 @@
1
run:
2
skip-dirs:
3
- examples/*.go
4
+ timeout: "5m"
5
+ # will not run golangci-lint against *_test.go
6
+ tests: false
7
+issues:
8
+ exclude-rules:
9
+ # excluding error checks from all the .go files
10
+ - path: ./*.go
11
+ linters:
12
+ - errcheck
13
+
0 commit comments