summaryrefslogtreecommitdiff
path: root/vendor/github.com/fsouza/go-dockerclient/.golangci.yaml
blob: aa3ab39e5f3ba24b11e9f67a2c6e6111f2325bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
run:
  deadline: 5m

  skip-dirs:
    - internal

issues:
  exclude-rules:
    - path: _test\.go
      linters:
        - bodyclose
        - goconst
        - gosec
        - scopelint
    - path: testing[/\\].+\.go
      linters:
        - gosec

linters:
  enable-all: true
  disable:
    - dupl
    - errcheck
    - funlen
    - gochecknoglobals
    - gocognit
    - goconst
    - lll
    - wsl