Skip to content

excessive-blank-identifiers

Default severity: warning

Reports assignments containing three or more blank identifiers. Repeatedly discarding adjacent results hides a function’s contract and can conceal an important value.

value, _, _, _, err := load()
value, metadata, err := load(); _ = metadata