当我在 cloud shell 编辑器中查看 python 文件时,长行标有绿线和警告
我发现这个警告让人分心。在现代宽屏幕上,\
长线更清晰\
比破碎的。
我可以通过将 # noqa: E501 附加到每条长线来删除 lint 警告,但这几乎同样令人分心。
x = 'this is a rather long line to show the E501 warning which will appear around here' # noqa: E501
有没有办法配置云外壳编辑器使用的 pylint 来全局抑制这种情况?