mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b79dec8138
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
28 lines
459 B
YAML
28 lines
459 B
YAML
---
|
|
issues:
|
|
exclude-rules:
|
|
# syscall param structs will have unused fields in Go code.
|
|
- path: syscall.*.go
|
|
linters:
|
|
- structcheck
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- goimports
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- staticcheck
|
|
- structcheck
|
|
- typecheck
|
|
- unused
|
|
- varcheck
|
|
|
|
# Could be enabled later:
|
|
# - gocyclo
|
|
# - maligned
|
|
# - gosec
|