diff options
author | Valery Piashchynski <[email protected]> | 2020-11-30 14:50:35 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-30 14:50:35 +0300 |
commit | 0a5116e9dcce76c8f845f4fdda41d448f3e38955 (patch) | |
tree | 0c81d9d509edc40c2988e038a5412ca3409e29ee /.golangci.yml | |
parent | a7f1952bc80f28985dde7da6446342a774464e24 (diff) | |
parent | d6e7b554ab56ee1f423ce915cc9dbb132457d689 (diff) |
Merge pull request #420 from spiral/plugin/static
[RR2] Plugin for serving static files [Static]
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 |