blob: 44cf86a067e8ffeb8fdd743e40a371dccd00b25d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | run:
  timeout: "5m"
  # will not run golangci-lint against *_test.go
  tests: false
issues:
  exclude-dirs:
    - examples/*.go
  exclude-rules:
  # excluding error checks from all the .go files
    - path: ./*.go
      linters:
        - errcheck
 |