.golangci.yml 514 Bytes
Newer Older
Vladimir Barsukov's avatar
lint  
Vladimir Barsukov committed
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
run:
  skip-dirs:
    - main
  skip-files:
    - zgo.go
linters:
  enable-all: true
  disable:
    - gci
    - depguard
    - goerr113
    - varnamelen
    - gomnd
    - goimports
    - gofumpt
    - wsl
    - wrapcheck
    - nonamedreturns
    - noctx
    - ireturn
    - funlen
    - containedctx
    - maligned
    - cyclop
    - gocyclo
    - exhaustive
    - gocognit
    - makezero
    - errchkjson
    - exhaustivestruct
    - exhaustruct
    - forcetypeassert
    - ifshort
    - gochecknoglobals
    - lll