.golangci.yml: don't fail on asset deadcode

This commit is contained in:
Guillaume Ballet 2020-01-15 19:12:35 +01:00
parent c2111af96d
commit a348312d48

View file

@ -6,6 +6,8 @@ run:
# default is true. Enables skipping of directories: # default is true. Enables skipping of directories:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$ # vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
skip-dirs-use-default: true skip-dirs-use-default: true
skip-files:
- core/genesis_alloc.go
linters: linters:
disable-all: true disable-all: true
@ -43,3 +45,6 @@ issues:
- path: core/vm/instructions_test.go - path: core/vm/instructions_test.go
linters: linters:
- goconst - goconst
- path: cmd/faucet/
linters:
- deadcode