aboutsummaryrefslogtreecommitdiff
path: root/forged/.golangci.yaml
blob: 75a56cdbdd06185265bdfe37ddefe292162a08ea (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
27
28

version: "2"

linters:
  default: all
  disable:
    - depguard
    - wsl_v5 # tmp
    - wsl # tmp
    - unused # tmp
    - nonamedreturns
    - err113 # tmp
    - gochecknoinits # tmp
    - nlreturn # tmp
    - cyclop # tmp
    - gocognit # tmp
    - varnamelen # tmp
    - funlen # tmp
    - lll

linters-settings:
  revive:
    rules:
      - name: error-strings
        disabled: true

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