forked from TrueCloudLab/frostfs-qos
76 lines
1.6 KiB
YAML
76 lines
1.6 KiB
YAML
|
# This file contains all available configuration options
|
||
|
# with their default values.
|
||
|
|
||
|
# options for analysis running
|
||
|
run:
|
||
|
# timeout for analysis, e.g. 30s, 5m, default is 1m
|
||
|
timeout: 5m
|
||
|
|
||
|
# include test files or not, default is true
|
||
|
tests: false
|
||
|
|
||
|
# output configuration options
|
||
|
output:
|
||
|
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
|
||
|
formats:
|
||
|
- format: tab
|
||
|
|
||
|
# all available settings of specific linters
|
||
|
linters-settings:
|
||
|
exhaustive:
|
||
|
# indicates that switch statements are to be considered exhaustive if a
|
||
|
# 'default' case is present, even if all enum members aren't listed in the
|
||
|
# switch
|
||
|
default-signifies-exhaustive: true
|
||
|
funlen:
|
||
|
lines: 60 # default 60
|
||
|
statements: 40 # default 40
|
||
|
gocognit:
|
||
|
min-complexity: 30 # default 30
|
||
|
importas:
|
||
|
no-unaliased: true
|
||
|
no-extra-aliases: false
|
||
|
unused:
|
||
|
field-writes-are-uses: false
|
||
|
exported-fields-are-used: false
|
||
|
local-variables-are-used: false
|
||
|
|
||
|
linters:
|
||
|
enable:
|
||
|
# mandatory linters
|
||
|
- govet
|
||
|
- revive
|
||
|
|
||
|
# some default golangci-lint linters
|
||
|
- errcheck
|
||
|
- gosimple
|
||
|
- godot
|
||
|
- ineffassign
|
||
|
- staticcheck
|
||
|
- typecheck
|
||
|
- unused
|
||
|
|
||
|
# extra linters
|
||
|
- bidichk
|
||
|
- durationcheck
|
||
|
- exhaustive
|
||
|
- copyloopvar
|
||
|
- gofmt
|
||
|
- goimports
|
||
|
- misspell
|
||
|
- predeclared
|
||
|
- reassign
|
||
|
- whitespace
|
||
|
- containedctx
|
||
|
- funlen
|
||
|
- gocognit
|
||
|
- contextcheck
|
||
|
- importas
|
||
|
- perfsprint
|
||
|
- testifylint
|
||
|
- protogetter
|
||
|
- intrange
|
||
|
- tenv
|
||
|
disable-all: true
|
||
|
fast: false
|