Default severity: warning
Purpose: detect top-level compiler directives that look intentional but are
ignored because whitespace appears between // and go:.
Bad
// go:noinline
func call() {}Good
//go:noinline
func call() {}Detect compiler directives disabled by leading whitespace.
Default severity: warning
Purpose: detect top-level compiler directives that look intentional but are
ignored because whitespace appears between // and go:.
// go:noinline
func call() {}//go:noinline
func call() {}