a5c0cfb451
* build: append GOARM to arm lint download URL otherwise it fails with: downloading from https://github.com/golangci/golangci-lint/releases/download/v1.42.0/golangci-lint-1.42.0-linux-arm.tar.gz ci.go:347: download error: status 404 * build: increase timeout for lint Otherwise it times out on a pi * Increase timeout even further saw longer build times
51 lines
1011 B
YAML
51 lines
1011 B
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
|
|
|
|
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
|