英文:
Go line-length-linter: How to ignore one line?
问题
我收到了这个警告:
> main.go:72: line is 191 characters (lll)
> klog.Fatalf("no ...") //nolint:lll
我添加了 nolint:lll
,但这并没有消除这个警告。
我们使用 https://golangci-lint.run/
我只想忽略这一行(没有全局配置)。
英文:
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).
答案1
得分: 3
我不确定,但我认为klog.Fatalf()
只是一段代码块。
请尝试以下建议:
//nolint:all
klog.Fatalf("no ...")
或者
klog.Fatalf("no ...") //nolint:all
或者
klog.Fatalf("no ...") //nolint:golint,unused
你可以参考这个链接。
英文:
I am not sure but I think klog.Fatalf()
is nothing but a block of code.
Could you please try the below suggestions:
//nolint:all
klog.Fatalf("no ...")
OR
klog.Fatalf("no ...") //nolint:all
OR
klog.Fatalf("no ...") //nolint:golint,unused
For the reference you can refer this link
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论