mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
|
linters-settings:
|
||
|
govet:
|
||
|
check-shadowing: true
|
||
|
settings:
|
||
|
printf:
|
||
|
funcs:
|
||
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
|
||
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
|
||
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
|
||
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
|
||
|
golint:
|
||
|
min-confidence: 0
|
||
|
gocyclo:
|
||
|
min-complexity: 10
|
||
|
maligned:
|
||
|
suggest-new: true
|
||
|
dupl:
|
||
|
threshold: 100
|
||
|
goconst:
|
||
|
min-len: 2
|
||
|
min-occurrences: 2
|
||
|
depguard:
|
||
|
list-type: blacklist
|
||
|
packages:
|
||
|
# logging is allowed only by logutils.Log, logrus
|
||
|
# is allowed to use only in logutils package
|
||
|
- github.com/sirupsen/logrus
|
||
|
misspell:
|
||
|
locale: US
|
||
|
lll:
|
||
|
line-length: 140
|
||
|
goimports:
|
||
|
local-prefixes: github.com/golangci/golangci-lint
|
||
|
gocritic:
|
||
|
enabled-tags:
|
||
|
- performance
|
||
|
- style
|
||
|
- experimental
|
||
|
disabled-checks:
|
||
|
- wrapperFunc
|
||
|
|
||
|
linters:
|
||
|
enable:
|
||
|
- deadcode
|
||
|
- goconst
|
||
|
- goimports
|
||
|
- golint
|
||
|
- gosec
|
||
|
- misspell
|
||
|
- structcheck
|
||
|
- typecheck
|
||
|
- unparam
|
||
|
- varcheck
|
||
|
- gofmt
|
||
|
- unused
|
||
|
disable-all: true
|
||
|
|
||
|
run:
|
||
|
skip-dirs:
|
||
|
- proto/
|
||
|
- ^contracts/
|
||
|
deadline: 10m
|
||
|
|
||
|
# golangci.com configuration
|
||
|
# https://github.com/golangci/golangci/wiki/Configuration
|
||
|
service:
|
||
|
golangci-lint-version: 1.15.0 # use the fixed version to not introduce new linters unexpectedly
|
||
|
prepare:
|
||
|
- echo "here I can run custom commands, but no preparation needed for this repo"
|