summaryrefslogtreecommitdiff
path: root/.golangci.yml
blob: da22b7602bf3eedb6a9014c7c96846e2753ebad4 (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
31
32
33
34
35
36
37
38
39
40
41
---
run:
  concurrency: 6
  deadline: 5m
  skip-dirs-use-default: true
  skip-dirs:
    - contrib
    - dependencies
    - test
    - pkg/spec
    - vendor
  skip-files:
    - iopodman.go
    - swagger.go
  modules-download-mode: readonly
linters:
  enable-all: true
  disable:
    # All these break for one reason or another
    - dupl
    - funlen
    - gochecknoglobals
    - gochecknoinits
    - goconst
    - gocyclo
    - golint
    - lll
    - structcheck
    - typecheck
    - unconvert
    - varcheck
    - deadcode
    - depguard
    - errcheck
    - gocritic
    - gosec
    - maligned
linters-settings:
  errcheck:
    check-blank: false
    ignore: encoding/json:^Unmarshal,fmt:.*