aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
blob: 490c1856833c01bde79f3081aebc1476661dca5e (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
linters-settings:
  maligned:
    suggest-new: true

linters:
  enable-all: true
  disable:
    - goimports
    - depguard
    - lll
    - gochecknoinits
    - gochecknoglobals
    - gofmt
    - scopelint
    - gocyclo
    - funlen
    - wsl
    - gocognit
    - godox

service:
  golangci-lint-version: 1.21.x
  prepare:
    - rm -f go.sum # 1.12 -> 1.13 issues with QUIC-go
    - GO111MODULE=on go mod vendor
    - go run build.go assets