summaryrefslogtreecommitdiffstats
path: root/vendor/gomod.garykim.dev/nc-talk/.golangci.yml
blob: ef89770a9dbb1093a851051047462d5923396231 (plain) (blame)
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
# golangci-lint configuration options

linters:
  enable:
    - deadcode
    - errcheck
    - goimports
    - golint
    - ineffassign
    - structcheck
    - varcheck
    - govet
    - unconvert
    - prealloc
    - maligned
  disable-all: false

issues:
  # Enable some lints excluded by default
  exclude-use-default: false

  # Maximum issues count per one linter. Set to 0 to disable. Default is 50.
  max-per-linter: 0

  # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
  max-same-issues: 0