summaryrefslogtreecommitdiff
path: root/vendor/github.com/fsouza/go-dockerclient/.golangci.yaml
blob: 3a21b76f7733326da3b20554d3f14645365d5727 (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
30
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
    - gomnd
    - lll
    - wsl