I get this warning:
main.go:72: line is 191 characters (lll) klog.Fatalf("no ...") //nolint:lll
I added nolint:lll
, but this does not silence this warning.
We use https://golangci-lint.run/
I want to ignore this line only (no global configuration).
I am not sure but I think
klog.Fatalf()
is nothing but a block of code.Could you please try the below suggestions:
OR
OR
For the reference you can refer this link