mirror of https://github.com/dragonflyoss/api.git
53 lines
850 B
YAML
53 lines
850 B
YAML
version: "2"
|
|
run:
|
|
modules-download-mode: readonly
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- errcheck
|
|
- goconst
|
|
- gocyclo
|
|
- govet
|
|
- misspell
|
|
- staticcheck
|
|
settings:
|
|
gocyclo:
|
|
min-complexity: 60
|
|
exclusions:
|
|
generated: lax
|
|
presets:
|
|
- comments
|
|
- common-false-positives
|
|
- legacy
|
|
- std-error-handling
|
|
rules:
|
|
- linters:
|
|
- staticcheck
|
|
text: 'SA1019:'
|
|
paths:
|
|
- third_party$
|
|
- builtin$
|
|
- examples$
|
|
issues:
|
|
new: true
|
|
formatters:
|
|
enable:
|
|
- gci
|
|
- gofmt
|
|
settings:
|
|
gci:
|
|
sections:
|
|
- standard
|
|
- default
|
|
exclusions:
|
|
generated: lax
|
|
paths:
|
|
- third_party$
|
|
- builtin$
|
|
- examples$
|
|
output:
|
|
formats:
|
|
text:
|
|
path: stdout
|
|
print-linter-name: true
|
|
print-issued-lines: true |