File: .golangci.yml

package info (click to toggle)
golang-github-openpubkey-openpubkey 0.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 964 kB
  • sloc: makefile: 10
file content (16 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
linters:
  enable:
  # golangci-lint defaults 
  # ref: https://golangci-lint.run/usage/linters/#enabled-by-default
  - errcheck
  - gosimple
  - govet
  - ineffassign
  - staticcheck
  - unused
  # additional
  - misspell
  - gofmt
  fast: true
run:
  timeout: 5m