我已经生成了我自己的 .pylintrc 配置文件,我在文档中读到了我们可以给 exit-zero 这样我们的 pylint 总是返回 0 退出代码 http://pylint.pycqa.org/en/latest/technical_reference/features.html
但我不知道如何在我的配置文件中提供值。
我给了它这样的:
fail-on=
# Specify a score threshold to be exceeded before program exits with error.
fail-under=5.00
exit-zero=yes
我知道这不是正确的方法,因为在我的 bitbucket 管道中它返回退出代码 4 或有时 20。如何提供退出零值?