From f82218f8d5e468ef18503f19ceba08ce9e5c5822 Mon Sep 17 00:00:00 2001 From: Ilya Dmitrichenko Date: Tue, 16 Oct 2018 09:21:38 +0100 Subject: [PATCH] Update GolangCI config --- .golangci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 462c4c68a7..e41353e995 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -22,21 +22,19 @@ run: # from this option's value: # vendor$, third_party$, testdata$, examples$, Godeps$, builtin$ skip-dirs: - - ^vendor\/ - - ^build\/ - - ^pkg\/nodebootstrap\/assets.go - - ^pkg\/testutils\/ - - ^pkg\/eks\/mocks\/ - - ^tests\/ + - ^vendor$ + - ^build$ + - ^pkg\/eks\/mocks$ - \/usr\/local\/go # which files to skip: they will be analyzed, but issues from them # won't be reported. Default value is empty list, but there is # no need to include all autogenerated files, we confidently recognize # autogenerated files. If it's not please let us know. - #skip-files: + skip-files: # - ".*\\.my\\.go$" # - lib/bad.go + - pkg/nodebootstrap/assets.go # output configuration options