broad-zoo-34077
06/30/2021, 12:38 PMcrooked-daybreak-55253
06/30/2021, 12:39 PMd.Get("kind") ==
should be strings.ToLower(d.Get("kind").String()) ==
• case sensitive regex in price filters: ValueRegex: strPtr(fmt.Sprintf("/%s/", deviceType))
should be ValueRegex: strPtr(fmt.Sprintf("/%s/i", deviceType))
• missing anchors in price filter regex: fmt.Sprintf("/%s/", x)
when it should be fmt.Sprintf("/^%s$/", x)
• incorrect output capitalization: └─ Data Ingested should be └─ Data ingested
• misnamed unit: GB-month
should be GB
little-author-61621
u != nil
before calling u.Get(...)
white-airport-8778
d.References
to avoid panics (already in contributing guide)