报告正在检查的文件名

时间:2017-03-28 17:49:55

标签: pylint

如何让 pylint 打印出目前检查的文件名(也许还有反击)?

文档说明如果发现问题,如何格式化邮件,而不是如何报告进度。 https://pylint.readthedocs.io/en/latest/user_guide/output.html

1 个答案:

答案 0 :(得分:0)

目前这是不可能的。添加到pylint的代码很容易:

index 258bfdc3..30bac9f1 100644
--- a/pylint/lint.py
+++ b/pylint/lint.py
@@ -839,6 +839,8 @@ class PyLinter(config.OptionsManagerMixIn,
             if not self.should_analyze_file(modname, filepath, is_argument=is_arg):
                 continue

+            print(modname)
+
             self.set_current_module(modname, filepath)
             # get the module representation
             ast_node = self.get_ast(filepath, modname)

但是我从来没有用一个选项和所有这些来做这个正确的拉取请求。