我正在从pyflakes迁移到flake8以获得# noqa
行忽略功能。为了简化迁移,我想首先检查之前检查的pyflakes,我喜欢pyflakes对"will never complain about style"的简单承诺。我可以使用flake8 --select F
开始pyflakes报告的内容吗?
flake8允许选择或禁用特定的错误代码,例如F401
“已导入但未使用的模块”。 F
代表什么?
flake8 error-code documentation未列出所有错误代码。
答案 0 :(得分:1)
是的,只使用pyflakes:
flake8 --select F
flake8记录了F
和C
"类"在pyflakes glossary上:
F
:pyflakes lint check; some documented by flake8 C
:mccabe复杂度,currently only C901
W
和E
:pep8次违规documented by pycodestyle