123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- run:
- timeout: 5m
- modules-download-mode: readonly
- linters-settings:
- gofmt:
- simplify: true
- goimports:
- local-prefixes: github.com/girish17/op-mm-plugin
- govet:
- check-shadowing: true
- enable-all: true
- disable:
- - fieldalignment
- misspell:
- locale: US
- linters:
- disable-all: true
- enable:
- - bodyclose
- - errcheck
- - gocritic
- - gofmt
- - goimports
- - gosec
- - gosimple
- - govet
- - ineffassign
- - nakedret
- - revive
- - staticcheck
- - stylecheck
- - typecheck
- - unconvert
- - unused
- - whitespace
- issues:
- exclude-rules:
- - path: server/configuration.go
- linters:
- - unused
- - path: _test\.go
- linters:
- - bodyclose
- - scopelint # https://github.com/kyoh86/scopelint/issues/4
|