summaryrefslogtreecommitdiffstats
path: root/.golangci.yml
blob: a566f849a5d1b80fb5aff36fc75146fcca8b6335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
run:
  timeout: 10m

linters:
  disable-all: true
  enable:
    - dupl
    - gofmt
    - goimports
    - gosimple
    - govet
    - ineffassign
    - misspell
    - nakedret
    - revive
    - unused
    - staticcheck

linters-settings:
  gofmt:
    simplify: true
  dupl:
    threshold: 400