bf68be2bd9
* dep: upgrade secp256k1 to use btcec/v2 v2.3.2 and update insecurity pkg * build ci: upgrade go to 1.19 and golangci-lint to 1.50.1 * docs: fix format that does not follow the goimports * dep: redirect github.com/bnb-chain/tendermint to v0.31.13 * ci: disable GOPROXY
54 lines
1.0 KiB
YAML
54 lines
1.0 KiB
YAML
# This file configures github.com/golangci/golangci-lint.
|
|
|
|
run:
|
|
timeout: 20m
|
|
tests: true
|
|
# default is true. Enables skipping of directories:
|
|
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
|
|
skip-dirs-use-default: true
|
|
skip-files:
|
|
- core/genesis_alloc.go
|
|
|
|
output:
|
|
format: colored-line-number
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
# - deadcode
|
|
- goconst
|
|
- goimports
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
# - staticcheck
|
|
- unconvert
|
|
# - unused
|
|
# - varcheck
|
|
|
|
linters-settings:
|
|
gofmt:
|
|
simplify: true
|
|
goconst:
|
|
min-len: 3 # minimum length of string constant
|
|
min-occurrences: 6 # minimum number of occurrences
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: crypto/blake2b/
|
|
linters:
|
|
- deadcode
|
|
- path: crypto/bn256/cloudflare
|
|
linters:
|
|
- deadcode
|
|
- path: p2p/discv5/
|
|
linters:
|
|
- deadcode
|
|
- path: core/vm/instructions_test.go
|
|
linters:
|
|
- goconst
|
|
- path: cmd/faucet/
|
|
linters:
|
|
- deadcode
|