summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/lrstanley/girc/.golangci.yml
blob: 1a8320c97edeac598507a7b9169462f10a611b71 (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
29
30
31
32
33
34
35
36
37
38
# THIS FILE IS GENERATED! DO NOT EDIT! Maintained by Terraform.
run:
  tests: False
  timeout: 3m

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

severity:
  default-severity: error
  rules:
    - linters:
        - errcheck
        - gocritic
      severity: warning

linters:
  enable:
    - asciicheck
    - exportloopref
    - gci
    - gocritic
    - gofmt
    - misspell

linters-settings:
  gocritic:
    disabled-checks:
      - hugeParam
      - ifElseChain
    enabled-tags:
      - diagnostic
      - opinionated
      - performance
      - style
  govet:
    check-shadowing: true