diff options
author | Valery Piashchynski <[email protected]> | 2020-11-24 16:17:41 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-24 16:17:41 +0300 |
commit | 863193bd7b21bbb2b30cf8960c83260a79d22a8b (patch) | |
tree | e6de60c46f04180531f5cd176bda595f13f54c32 /.golangci.yml | |
parent | be4aadb5384fd8b97c927f3ef48383dc5b23b345 (diff) |
exclude tests from golangci
Diffstat (limited to '.golangci.yml')
-rwxr-xr-x | .golangci.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.golangci.yml b/.golangci.yml index b7415b25..59dc0ae6 100755 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,7 +1,10 @@ -linters: +run: skip-files: - - ".*\\test\\.go$" - - lib/bad.go + - plugins/http/tests/http_test.go + - plugins/http/tests/plugin_test_old.go + - plugins/http/tests/rpc_test_old.go + - plugins/http/tests/config_test.go +linters: disable-all: true enable: - bodyclose |