Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
昨天我在 Google Cloud Shell 中的 python 脚本开始包含以下关于行长的 pycodestyle 警告:
[pycodestyle] E501 line too long (85 > 79 characters)
虽然一些警告/评论很有用,但有些只是烦人,我希望能够配置警告,例如将可接受的长度扩展到超过 79 个字符。是否可以包含 setup.cfg 或类似文件来配置这些警告,以及它需要放在 Cloud Shell 目录结构中的什么位置?
谢谢,克里斯
是的,这是可能的。
您可以添加类似以下内容的~/.config/pycodestyle文件:
~/.config/pycodestyle
[pycodestyle] max-line-length = 100
还有其他选项,请参阅配置。