Go

Go

Made by DeepSource

Suspicious map literal key GO-W4003

Bug risk
Minor

Checks for leading and training whitespaces in keys and duplicate keys in map literals.

Bad practice

_ = map[string]int {
    "foo":  1,
    "bar ": 2, // key has a trailing whitespace
}

Recommended

_ = map[string]int {
    "foo": 1,
    "bar": 2,
}