2021-05-13 20:26:05 +00:00
|
|
|
# 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
|
2023-06-05 10:02:30 +00:00
|
|
|
timeout: 15m
|
2021-05-13 20:26:05 +00:00
|
|
|
|
|
|
|
# include test files or not, default is true
|
|
|
|
tests: true
|
|
|
|
|
|
|
|
# output configuration options
|
|
|
|
output:
|
|
|
|
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
|
2024-08-22 16:13:52 +00:00
|
|
|
formats:
|
|
|
|
- format: tab
|
2021-05-13 20:26:05 +00:00
|
|
|
|
|
|
|
# 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
|
2023-08-25 14:16:24 +00:00
|
|
|
custom:
|
|
|
|
truecloudlab-linters:
|
|
|
|
path: bin/external_linters.so
|
|
|
|
original-url: git.frostfs.info/TrueCloudLab/linters.git
|
|
|
|
settings:
|
|
|
|
noliteral:
|
|
|
|
enable: true
|
|
|
|
target-methods: ["Fatal"]
|
|
|
|
disable-packages: ["codes", "tc"]
|
|
|
|
constants-package: "git.frostfs.info/TrueCloudLab/frostfs-s3-gw/internal/logs"
|
2021-05-13 20:26:05 +00:00
|
|
|
|
|
|
|
linters:
|
|
|
|
enable:
|
|
|
|
# mandatory linters
|
|
|
|
- govet
|
2021-09-30 18:04:23 +00:00
|
|
|
- revive
|
2021-05-13 20:26:05 +00:00
|
|
|
|
|
|
|
# some default golangci-lint linters
|
|
|
|
- errcheck
|
|
|
|
- gosimple
|
|
|
|
- ineffassign
|
|
|
|
- staticcheck
|
|
|
|
- typecheck
|
|
|
|
- unused
|
|
|
|
|
|
|
|
# extra linters
|
|
|
|
- exhaustive
|
|
|
|
- godot
|
|
|
|
- gofmt
|
|
|
|
- whitespace
|
|
|
|
- goimports
|
2023-08-25 14:16:24 +00:00
|
|
|
- truecloudlab-linters
|
2021-05-13 20:26:05 +00:00
|
|
|
disable-all: true
|
|
|
|
fast: false
|
|
|
|
|
|
|
|
issues:
|
|
|
|
include:
|
|
|
|
- EXC0002 # should have a comment
|
|
|
|
- EXC0003 # test/Test ... consider calling this
|
|
|
|
- EXC0004 # govet
|
|
|
|
- EXC0005 # C-style breaks
|