3

我使用一个pylintrc文件在项目范围内禁用一些 pylint 警告,但我想仅针对名为SConscript.

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

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

4

1 回答 1

-1

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 扫描将忽略您在此处设置的文件名/目录/包名模式。

于 2020-12-22T00:17:35.443 回答