1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
"vendor": true,
"tests": true,
"deadline": "10m",
"sort": ["path", "line"],
"minconstlength": 7,
"skip": [
"pkg/kd"
],
"enable": [
"golint",
"structcheck",
"megacheck",
"unconvert",
"deadcode",
"goconst",
"unused",
"gosimple",
"varcheck",
"vet"
],
"exclude": [
"don't use underscores in Go names",
"don't use ALL_CAPS in Go names",
"exported .* should have comment",
"comment on exported type",
"package comment should be of the form",
"comment on .* should be of the form",
"should not use dot imports",
"composite literal uses unkeyed fields"
]
}
|