Merge pull request #3513 from halseth/lint-skip-generated

[trivial] lint: skip generated files
This commit is contained in:
Olaoluwa Osuntokun
2019-09-18 21:51:16 -07:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,10 @@ run:
# worker.
concurrency: 1
# Skip autogenerated files for mobile.
skip-files:
- "mobile\\/.*generated\\.go"
build-tags:
- autopilotrpc
- chainrpc

View File

@@ -51,7 +51,7 @@ include make/testing_flags.mk
DEV_TAGS := $(if ${tags},$(DEV_TAGS) ${tags},$(DEV_TAGS))
LINT = $(LINT_BIN) run
LINT = $(LINT_BIN) run -v
GREEN := "\\033[0;32m"
NC := "\\033[0m"