aboutsummaryrefslogtreecommitdiff
path: root/forged/internal/scfg/.golangci.yaml
blob: 7db9793b39131be3e470664e4cecc1e0aea9b60c (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

linters:
  enable-all: true
  disable:
    - perfsprint
    - wsl
    - varnamelen
    - nlreturn
    - exhaustruct
    - wrapcheck
    - lll
    - exhaustive
    - intrange
    - godox
    - nestif
    - err113
    - staticcheck
    - errorlint
    - cyclop
    - nonamedreturns
    - funlen
    - gochecknoglobals

issues:
  max-issues-per-linter: 0
  max-same-issues: 0