File: .golangci.yml

package info (click to toggle)
golang-github-jaksi-sshutils 0.0.15-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 180 kB
  • sloc: makefile: 2
file content (23 lines) | stat: -rw-r--r-- 385 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
linters:
  enable-all: true
  disable:
    - wsl
    - nlreturn
    - ireturn
    - varnamelen
issues:
  exclude-rules:
    - path: ^serialization\.go$
      linters:
        - maligned
    - path: _test\.go$
      linters:
        - funlen
        - maligned
        - cyclop
        - goerr113
        - maintidx
        - gocognit
        - gosec
        - gocyclo
        - nestif