gpt4 book ai didi

python - Linux 上的 Pylint `--good-names` 语法

转载 作者:行者123 更新时间:2023-12-02 18:04:21 25 4
gpt4 key购买 nike

我一直在 Windows 中使用 PyLint,配置如下:

pylint \
--good-names ('i','el','of','df','pd','Entity') \
--bad-names ('foo','bar','kek','KEK') \
module

但在 Ubuntu 上,我在尝试解析好名称参数时遇到异常 ('i','el', ...):

/bin/bash: -c: line 6: syntax error near unexpected token `('

在 ubuntu 上提供此类不常见参数的正确方法是什么?

最佳答案

您应该将元组括在引号中:

pylint \
--good-names "('i','el','of','df','pd','Entity')" \
--bad-names "('foo','bar','kek','KEK')" \
module

关于python - Linux 上的 Pylint `--good-names` 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73652763/

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