当前位置: 代码迷 >> python >> PyLint bad-whitespace配置
  详细解决方案

PyLint bad-whitespace配置

热度:110   发布时间:2023-06-13 15:33:49.0

有没有办法在PyLint中配置bad-whitespace检查的检查? 我现在可以禁用检查,但我宁愿强制执行空白约定而不是禁用它。

.pylintrc文件使用属性no-space-check确实提供了有限的空白规则编辑:

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1  : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=

不过,在不久的将来可能会有更多的选择。

的ID bad-whitespace约定检查C0326从pylint的1.1.0起。 您可以在.pylintrc配置文件中使用此代码来启用/禁用bad-whitespace检查。

[MESSAGES CONTROL]
enable=C0326

要么

[MESSAGES CONTROL]
disable=C0326

您可以使用两种选项:

  1. 全局禁用坏空白警告:

     pylint --disable=C0326 
  2. 使用Pylint配置文件:

     pylint --rcfile=/path/to/config.file 

    这是您在配置文件中放置以禁用坏空白警告的内容:

     disable=C0326