ci-lint: disable ifshort

This commit is contained in:
Thomas Pelletier
2021-04-15 13:37:24 -04:00
parent b86b890b8d
commit 9bc4641a49
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ enable = [
"gosec", "gosec",
"gosimple", "gosimple",
"govet", "govet",
"ifshort", # "ifshort",
"importas", "importas",
"ineffassign", "ineffassign",
"lll", "lll",
+1 -1
View File
@@ -24,7 +24,7 @@ type target interface {
// Store a float64 at the target // Store a float64 at the target
setFloat64(v float64) error setFloat64(v float64) error
// Stores any value at the target // Stores any value at the target
set(v reflect.Value) error set(v reflect.Value) error
} }