我目前正在使用flake8
作为python linter的项目上工作。以前,我在所有项目中都使用pylint
。因此,我在Visual Studio Code中工作,我也使用black
作为代码格式化程序。
因此,除了flake8
之外,其他所有东西都可以使用。代码以黑色格式化,但在Problems
标签下看不到任何问题:
,即使我可以在Output
下看到它们(所以flake8实际上被调用了,但是它的错误没有传递给vs代码):
##########Linting Output - flake8##########
0,1,I,I002:no configuration found (.isort.cfg or [isort] in configs)
1,1,C,C101:Coding magic comment not found
1,1,D,D100:Missing docstring in public module
5,21,Q,Q000:Remove bad quotes
5,46,Q,Q000:Remove bad quotes
7,1,W,WPS111:Found too short name: a
7,5,Q,Q000:Remove bad quotes
10,12,Q,Q000:Remove bad quotes
11,1,D,D103:Missing docstring in public function
12,21,Q,Q000:Remove bad quotes
12,31,Q,Q000:Remove bad quotes
15,16,Q,Q000:Remove bad quotes
16,1,S,S201:A Flask app appears to be run with debug=True, which exposes the Werkzeug debugger and allows the execution of arbitrary code.
这些是vs代码中与python / flake相关的选项:
// Python settings
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"-l",
"79"
],
"python.jediEnabled": true,
"python.linting.flake8Enabled": true,
当然,我已经安装了flake8
(在全局和pipenv
中)。
那么,有没有办法解决这个问题?我在这里问,因为cuz flake GH repo只是一面镜子,我无法在其中创建Issue
。
@编辑
当我通过Ctrl+Shift+P->Python: Run linting
运行棉绒时,输出像以前一样被打印到Output
标签上,但是我得到了弹出窗口: