mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
af50e1b096
* Update to v1.28.0 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update golang to v1.20.7 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * more changes Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update wrangler Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update wrangler Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix nodepassword test Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix nodepassword test Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * disable CGO before running golangci-lint Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * execlude CGO Enabled checks Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Ignore reapply change error with logging Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update google api client Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> --------- Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com>
46 lines
645 B
JSON
46 lines
645 B
JSON
{
|
|
"linters": {
|
|
"disable-all": true,
|
|
"enable": [
|
|
"govet",
|
|
"revive",
|
|
"goimports",
|
|
"misspell",
|
|
"gofmt"
|
|
]
|
|
},
|
|
"run": {
|
|
"skip-dirs": [
|
|
"build",
|
|
"contrib",
|
|
"manifests",
|
|
"package",
|
|
"scripts",
|
|
"vendor"
|
|
],
|
|
"skip-files": [
|
|
"/zz_generated_"
|
|
],
|
|
"deadline": "5m"
|
|
},
|
|
"issues": {
|
|
"exclude-rules": [
|
|
{
|
|
"linters": "typecheck",
|
|
"text": "imported but not used"
|
|
},
|
|
{
|
|
"linters": "typecheck",
|
|
"text": "build constraints exclude all Go files"
|
|
},
|
|
{
|
|
"linters": "revive",
|
|
"text": "should have comment"
|
|
},
|
|
{
|
|
"linters": "revive",
|
|
"text": "exported"
|
|
}
|
|
]
|
|
}
|
|
} |