mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
92b651e548
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
39 lines
500 B
JSON
39 lines
500 B
JSON
{
|
|
"linters": {
|
|
"disable-all": true,
|
|
"enable": [
|
|
"govet",
|
|
"revive",
|
|
"goimports",
|
|
"misspell",
|
|
"ineffassign",
|
|
"gofmt"
|
|
]
|
|
},
|
|
"run": {
|
|
"skip-dirs": [
|
|
"build",
|
|
"contrib",
|
|
"manifests",
|
|
"package",
|
|
"scripts"
|
|
],
|
|
"skip-files": [
|
|
"/zz_generated_"
|
|
],
|
|
"deadline": "5m"
|
|
},
|
|
"issues": {
|
|
"exclude-rules": [
|
|
{
|
|
"linters": "typecheck",
|
|
"text": "imported but not used"
|
|
},
|
|
{
|
|
"linters": "revive",
|
|
"text": "should have comment"
|
|
}
|
|
]
|
|
}
|
|
}
|