.golangci.yml: enable goconst and ineffassign linters

This commit is contained in:
Felix Lange 2019-11-15 14:47:19 +01:00
parent ab8cd1508e
commit 7fb4cede88

View file

@ -11,9 +11,11 @@ linters:
disable-all: true
enable:
- deadcode
- goconst
- goimports
- gosimple
- govet
- ineffassign
- misspell
# - staticcheck
- unconvert
@ -38,3 +40,6 @@ issues:
- path: p2p/discv5/
linters:
- deadcode
- path: core/vm/instructions_test.go
linters:
- goconst