File: .golangci.yml

package info (click to toggle)
golang-github-showmax-go-fqdn 1.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, bullseye-backports, sid, trixie
  • size: 176 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 464 bytes parent folder | download
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
run:
  modules-download-mode: readonly

linters-settings:
  errcheck:
    check-type-assertions: true

  govet:
    enable-all: true

linters:
  enable:
    - dogsled
    - gochecknoglobals
    - gochecknoinits
    - goconst
    - gomnd
    - goprintffuncname
    - maligned
    - nakedret
    - scopelint
    - unconvert
    - unparam

issues:
  exclude-rules:
    - path: _test.go$
      linters:
        - gomnd

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