mirror of
https://github.com/42wim/matterbridge
synced 2024-11-17 03:26:07 +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"
|