frostfs-locode-db/.golangci.yml
George Bartolomey 7e523f1a28
Update common files from template repo
Added files from TrueCloudLab/basic repo for pre-commit checks, CI, etc.

Signed-off-by: George Bartolomey <george@bh4.ru>
2024-07-08 11:12:07 +03:00

64 lines
1.4 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: 10m
# 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"
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
govet:
# report about shadowed variables
check-shadowing: false
staticcheck:
checks: ["all"]
funlen:
lines: 80 # default 60
statements: 60 # default 40
gocognit:
min-complexity: 40 # default 30
linters:
enable:
# mandatory linters
- govet
- revive
- errcheck
- gosimple
- ineffassign
- staticcheck
- typecheck
- unused
- bidichk
- durationcheck
- exhaustive
- exportloopref
- gofmt
- goimports
- misspell
- whitespace
# extra linters
- godot
- predeclared
- reassign
- containedctx
- funlen
- gocognit
- contextcheck
disable-all: true
fast: false