diff options
author | Valery Piashchynski <[email protected]> | 2020-11-30 12:54:41 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-30 12:54:41 +0300 |
commit | 9402ea1e88d6e63b8b0388ad662d20b727b940d0 (patch) | |
tree | 3a012e3d4a891f35466d53a7e8a3a8f209a249bc /.golangci.yml | |
parent | b27564251f4dbb8e366a4940d79a5645e2b28d3c (diff) |
Static plugin initial commit
Diffstat (limited to '.golangci.yml')
-rwxr-xr-x | .golangci.yml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/.golangci.yml b/.golangci.yml index 59dc0ae6..a49abafb 100755 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,6 +4,7 @@ run: - plugins/http/tests/plugin_test_old.go - plugins/http/tests/rpc_test_old.go - plugins/http/tests/config_test.go + - plugins/static/tests/static_plugin_test.go linters: disable-all: true enable: @@ -11,28 +12,28 @@ linters: - deadcode - depguard - dogsled -# - dupl + # - dupl - errcheck - exhaustive -# - funlen + # - funlen - gochecknoinits -# - goconst + # - goconst - gocritic - gocyclo - gofmt - goimports - golint -# - gomnd + # - gomnd - goprintffuncname - gosec -# - gosimple + # - gosimple - govet - ineffassign - interfacer -# - lll + # - lll - misspell - nakedret -# - noctx + # - noctx - nolintlint - rowserrcheck - scopelint @@ -41,8 +42,8 @@ linters: - stylecheck - typecheck - unconvert -# - unparam -# - unused + # - unparam + # - unused - varcheck - whitespace |