Pylintrc 配置只显示错误
Pylintrc config to only show errors
我找不到一个简单的 ~/.pylintrc
文件来忽略除错误之外的所有内容。
目前我将其设置为:
[MESSAGES CONTROL]
disable=W
由此similar Whosebug answer。从理论上讲,这应该会删除警告,但它对我不起作用,即使在重新加载 window.
之后也是如此
我只想显示错误(红色)而不是警告(绿色)
我正在尝试解决同样的问题!你的 post 帮助了我。
pylint 有 several categories of checks:
- C convention related checks
- R refactoring related checks
- W various warnings
- E errors, for probable bugs in the code
- F fatal, if an error occurred which prevented pylint from doing further processing.
因此,如果您想阻止除 E 和 F 之外的所有内容,请在 ~/.pylintrc 中执行:
[MESSAGES CONTROL]
disable=C,R,W
我找不到一个简单的 ~/.pylintrc
文件来忽略除错误之外的所有内容。
目前我将其设置为:
[MESSAGES CONTROL]
disable=W
由此similar Whosebug answer。从理论上讲,这应该会删除警告,但它对我不起作用,即使在重新加载 window.
之后也是如此我只想显示错误(红色)而不是警告(绿色)
我正在尝试解决同样的问题!你的 post 帮助了我。
pylint 有 several categories of checks:
- C convention related checks
- R refactoring related checks
- W various warnings
- E errors, for probable bugs in the code
- F fatal, if an error occurred which prevented pylint from doing further processing.
因此,如果您想阻止除 E 和 F 之外的所有内容,请在 ~/.pylintrc 中执行:
[MESSAGES CONTROL]
disable=C,R,W