You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ConvertStringMapToInterfaceMap converts a map[string]string to a pointer to map[string]interface{}.
134
134
// Returns nil if the input map is empty.
135
135
//
136
-
//nolint:gocritic
136
+
//nolint:gocritic // Linter wants to have a non-pointer type for the map, but this would mean a nil check has to be done before every usage of this func.
0 commit comments