gpt4 book ai didi

python - 可以在内联注释中指定哪些 pylint 选项?

转载 作者:太空狗 更新时间:2023-10-29 18:31:21 24 4
gpt4 key购买 nike

我注意到我可以使用评论禁用特定消息。例如,默认情况下 pylint 会提示少于三个字母的变量名。我可以这样抑制它:

# pylint: disable=invalid-name
def some_string_operation(s): # (the same thing here would also work)
return something(s)

但我不能,例如,将 s 添加到 good-names 列表中。这不起作用:

# pylint: good-names=s
def some_string_operation(s):
return something(s)

显然不是所有选项都可以那样修改。哪些可以?

最佳答案

在模块注释中您只能启用/禁用特定的 PyLint 检查:

# pylint: disable=wildcard-import, method-hidden
# pylint: enable=too-many-lines

关于python - 可以在内联注释中指定哪些 pylint 选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34803567/

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