ci: update golangci-lint config, increase timeout (#3771)

Some of the linters we've been using are deprecated now. We also hadn't
update our qtls depguard config for a very long time.
This commit is contained in:
Marten Seemann 2023-04-19 14:45:19 +02:00 committed by GitHub
parent da26f91905
commit 8507208665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View file

@ -31,4 +31,5 @@ jobs:
- name: golangci-lint - name: golangci-lint
uses: golangci/golangci-lint-action@v3 uses: golangci/golangci-lint-action@v3
with: with:
args: --timeout=3m
version: v1.52.2 version: v1.52.2

View file

@ -1,14 +1,15 @@
run: run:
skip-files:
- internal/qtls/structs_equal_test.go
linters-settings: linters-settings:
depguard: depguard:
type: blacklist type: blacklist
packages: packages:
- github.com/marten-seemann/qtls - github.com/marten-seemann/qtls
- github.com/quic-go/qtls-go1-19
- github.com/quic-go/qtls-go1-20
packages-with-error-message: packages-with-error-message:
- github.com/marten-seemann/qtls: "importing qtls only allowed in internal/qtls" - github.com/marten-seemann/qtls: "importing qtls only allowed in internal/qtls"
- github.com/quic-go/qtls-go1-19: "importing qtls only allowed in internal/qtls"
- github.com/quic-go/qtls-go1-20: "importing qtls only allowed in internal/qtls"
misspell: misspell:
ignore-words: ignore-words:
- ect - ect
@ -17,7 +18,6 @@ linters:
disable-all: true disable-all: true
enable: enable:
- asciicheck - asciicheck
- deadcode
- depguard - depguard
- exhaustive - exhaustive
- exportloopref - exportloopref
@ -30,11 +30,9 @@ linters:
- prealloc - prealloc
- staticcheck - staticcheck
- stylecheck - stylecheck
- structcheck
- unconvert - unconvert
- unparam - unparam
- unused - unused
- varcheck
- vet - vet
issues: issues: