diff options
Diffstat (limited to 'vendor/github.com/gorilla/websocket/.golangci.yml')
| -rw-r--r-- | vendor/github.com/gorilla/websocket/.golangci.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/vendor/github.com/gorilla/websocket/.golangci.yml b/vendor/github.com/gorilla/websocket/.golangci.yml index 34882139e..44cf86a06 100644 --- a/vendor/github.com/gorilla/websocket/.golangci.yml +++ b/vendor/github.com/gorilla/websocket/.golangci.yml @@ -1,3 +1,13 @@ run: - skip-dirs: + timeout: "5m" + # will not run golangci-lint against *_test.go + tests: false +issues: + exclude-dirs: - examples/*.go + exclude-rules: + # excluding error checks from all the .go files + - path: ./*.go + linters: + - errcheck + |
