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
commit 003c576406
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

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

@ -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"