We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f24a05 commit b64c911Copy full SHA for b64c911
check/checkfunctions/library.go
@@ -92,7 +92,7 @@ func LibraryPropertiesNameFieldGTMaxLength() (result checkresult.Type, output st
92
// LibraryPropertiesNameFieldGTRecommendedLength checks if the library.properties "name" value is greater than the recommended length.
93
func LibraryPropertiesNameFieldGTRecommendedLength() (result checkresult.Type, output string) {
94
if checkdata.LibraryPropertiesLoadError() != nil {
95
- return checkresult.NotRun, checkdata.LibraryProperties().Get("name")
+ return checkresult.NotRun, ""
96
}
97
98
name, ok := checkdata.LibraryProperties().GetOk("name")
0 commit comments