aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
blob: d8e80ec2744423b31b97f8bc417f1a4588e66d2c (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
run:
  concurrency: 6
  deadline: 5m
  skip-dirs-use-default: true
  skip-dirs:
    - contrib
    - dependencies
  skip-files:
    - swagger.go
  modules-download-mode: readonly
linters:
  enable-all: true
  disable:
    # All these break for one reason or another
    - tagliatelle # too many JSON keys cannot be changed due to compat
    - gocognit
    - testpackage
    - goerr113
    - exhaustivestruct
    - errorlint
    - wrapcheck
    - paralleltest
    - wsl
    - godox
    - tparallel
    - gomnd
    - nlreturn
    - noctx
    - nestif
    - predeclared
    - thelper
    - ifshort
    - forbidigo
    - exhaustive
    - gofumpt
    - gci
    - godot
    - dupl
    - funlen
    - gochecknoglobals
    - gochecknoinits
    - goconst
    - gocyclo
    - lll
    - gosec
    - maligned
    - gomoddirectives
    - containedctx
    - contextcheck
    - cyclop
    - errname
    - forcetypeassert
    - ireturn
    - varnamelen
    - maintidx
    - nilnil
    - nonamedreturns
    - exhaustruct
    # deprecated linters
    - golint # replaced by revive
    - scopelint # replaced by exportloopref
    - interfacer
linters-settings:
  errcheck:
    check-blank: false
    ignore: fmt:.*
  nolintlint:
    allow-leading-space: false
    require-specific: true