File: .golangci.yaml

package info (click to toggle)
golang-github-openfga-go-sdk 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,140 kB
  • sloc: makefile: 13
file content (20 lines) | stat: -rw-r--r-- 250 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: 2

run:
  skip-files:
    - ^.*model_.*\.go$


linters:
  enable-all: true
  disable:
    - unused

exclude-rules:
  - path: ^.*model_.*\.go$
    linters:
      - errcheck
      - govet
      - ineffassign
      - staticcheck
      - unused