我使用一个pylintrc
文件在项目范围内禁用一些 pylint 警告,但我想仅针对名为SConscript
.
目前,我# pylint: disable=...
在每个文件的开头都有一个SConscript
,但维护起来很痛苦。
有没有办法告诉 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 扫描将忽略您在此处设置的文件名/目录/包名模式。