gpt4 book ai didi

python - 在 Pylint 中,我可以根据文件名覆盖全局消息控制吗?

转载 作者:行者123 更新时间:2023-12-05 08:10:05 24 4
gpt4 key购买 nike

我使用 pylintrc 文件在项目范围内禁用一些 pylint 警告,但我想仅针对名为 SConscript 的文件禁用更多消息。

目前,我在每个 SConscript 文件的开头都有一个 # pylint: disable=...,但维护起来很麻烦。

有没有办法告诉 pylint 根据处理后的文件名进行额外的抑制? (或正则表达式,或其他)

最佳答案

在您的 pylintrc 配置文件中设置此设置的解决方案:

# Add files or directories matching the regex patterns to the blacklist. The
# regex matches against base names, not paths.
# Ignore all .py files under the 3rdparty subdirectory.
ignore-patterns=SConscript,**/3rdparty/**/*.py,.venv

使用此设置,pylint 扫描将忽略您在此处设置的文件名/目录/包名模式。

关于python - 在 Pylint 中,我可以根据文件名覆盖全局消息控制吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27379952/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com