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
diagnostics=append(diagnostics, "go.sum: one or more sums are missing.\nRun 'go mod tidy' to add missing sums.")
990
+
varmissing []string
991
+
for_, req:=rangenewReqs {
992
+
if!oldMap[req] {
993
+
missing=append(missing, req)
998
994
}
999
995
}
1000
996
997
+
iflen(missing) >0 {
998
+
diagnostics=append(diagnostics, fmt.Sprintf("go.mod: the following requirements are needed\n\t%s\nRun 'go mod tidy' to add missing requirements.", strings.Join(missing, "\n\t")))
0 commit comments