aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
blob: 9fcf08a433c1507a357d91500468e70f47e47b4f (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
run:
  build-tags:
    - apparmor
    - ostree
    - seccomp
    - selinux
  concurrency: 6
  deadline: 5m
  skip-dirs:
    - dependencies/*
    - contrib
    - test/e2e
    - docs
    - test/
    - tracing
  skip-files:
    - iopodman.go
linters:
  disable-all: true
  enable:
    - bodyclose
    - deadcode
    - depguard
    # dupl really overdid it; disabling
    # - dupl
    - errcheck
    - gofmt
    - gosimple
    - govet
    - ineffassign
    - nakedret
    - staticcheck
    - structcheck
    - typecheck
    - unused
    - varcheck
    # - gochecknoglobals
    # - gochecknoinits
    # - goconst
    # - gocritic
    # - gocyclo
    # - goimports
    # - golint
    # - gosec
    - interfacer
    # - lll
    # - maligned
    # - misspell
    # - prealloc
    - scopelint
    - stylecheck
    - unconvert
    # I think we should uncomment this one and used it
    # - unparam