mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
35 lines
525 B
YAML
35 lines
525 B
YAML
run:
|
|
timeout: 5m
|
|
|
|
linters-settings:
|
|
gofmt:
|
|
simplify: true
|
|
govet:
|
|
check-shadowing: true
|
|
enable-all: true
|
|
disable:
|
|
- fieldalignment
|
|
- deepequalerrors # remove later
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- deadcode
|
|
- gofmt
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- exportloopref
|
|
- structcheck
|
|
- staticcheck
|
|
- unconvert
|
|
- unused
|
|
- varcheck
|
|
- misspell
|
|
- goimports
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- linters:
|
|
- unused
|
|
path: "graphql_test.go" |