我试图在Pylint 0.21.1中禁用警告C0321(“单行中有多个语句”——我经常将具有短单行结果的if语句放在同一行上)(如果有问题:astng 0.20.1, common 0.50.3,和Python 2.6.6 (r266:84292, 2010年9月15日,16:22:56))。
我尝试在Pylint配置文件中添加disable=C0321,但Pylint坚持报告它。这一行的变体(如disable=0321或disable=C321)被标记为错误,因此Pylint能够正确地识别该选项。它只是忽略它。
这是一个Pylint错误,还是我做错了什么?有办法解决这个问题吗?
我真的很想摆脱这些噪音。
对不起,我偏离了最初的问题,关于海报的一般偏好,这将更好地解决一个全局配置文件。
但是,正如在许多流行的答案中一样,我倾向于在我的代码中看到什么可以触发警告,并最终通知贡献者。
我回复@imolit的评论需要保持简短,以下是一些细节。
对于多语句消息,最好在块或模块级别禁用它,就像这样
# pylint: disable=multiple-statements
我的用例现在是unittest setup()中的attribute-defined-outside-init,我选择了行范围消息禁用,使用消息代码来避免行太长问题。
class ParserTest(unittest.TestCase):
def setUp(self):
self.parser = create_parser() # pylint: disable=W0201
可以在本地使用类似的命令找到对应关系
$ pylint --list-msgs | grep 'outside-init'
:attribute-defined-outside-init (W0201): *Attribute %r defined outside __init__*
当然,您也可以类似地从代码中检索符号名称。
这是一个常见问题:
4.1 Is it possible to locally disable a particular message?
Yes, this feature has been added in Pylint 0.11. This may be done by
adding
# pylint: disable=some-message,another-one at the desired
block level or at the end of the desired line of code.
4.2 Is there a way to disable a message for a particular module only?
Yes, you can disable or enable (globally disabled) messages at the
module level by adding the corresponding option in a comment at the
top of the file:
# pylint: disable=wildcard-import, method-hidden
# pylint: enable=too-many-lines
您可以通过以下方式禁用消息:
数字编号:E1101, E1102等。
符号消息:无成员、未定义变量等。
一组检查的名称。你可以用pylint——list-groups来获取它们。
支票类别:C、R、W等。
所有人的支票。
请参阅文档(或在终端中运行pylint——list-msgs)以获得pylint消息的完整列表。文档还提供了如何使用该特性的很好的示例。