python - vscode 无法捕获 flake8 输出

标签 python visual-studio-code flake8

我目前正在开发一个使用 flake8 作为 python linter 的项目。以前我在所有项目中都使用pylint。所以我在 Visual Studio Code 中工作,我还使用 black 作为代码格式化程序。

现在一切正常,除了 flake8 之外。代码被格式化为黑色,但我在 Problems 选项卡下没有看到任何问题:

enter image description here

,即使我可以在 Output 下看到它们(因此 flake8 实际上被调用,但它的错误不会通过管道传输到 vs code):

##########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 code 中与 python/flake 相关的选项:

// Python settings
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
    "-l",
    "79"
],
"python.jediEnabled": true,
"python.linting.flake8Enabled": true,

当然,我已经安装了 flake8(全局安装和 pipenv 中)。

那么,有办法解决这个问题吗?我在这里问,因为 flake GH repo 只是一个镜像,我无法在那里创建 Issue

@编辑

当我通过 Ctrl+Shift+P->Python: Run linting 运行 linting 时,输出会像以前一样打印到 Output 选项卡,但我得到了弹出窗口:

enter image description here

最佳答案

看来这是一个known reported issue 。还有一个pull request已提交以修复此问题。在撰写本文时,此修复尚未包含在发行版中。

关于python - vscode 无法捕获 flake8 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364069/

相关文章:

Python 线程模块 - GUI 仍然卡住

visual-studio-code - 使用 Visual Studio Code 自动保存文件更改

node.js - Visual Studio 代码中是否有一个扩展来从 package.json 获取实际安装的包版本?

python - flake8 错误 E901

javascript - MongoDB $sort 聚合

python - 如果 x 是 pandas 系列,为什么点积 x@A 不起作用?

python - 如何在python中生成n维网格

visual-studio-code - VSCode 中自定义 JSX 组件的选项卡快捷方式

git - Flake8 配置未在 git hook 中应用

python - Flake8Lint 错误 : AttributeError: 'NoneType' object has no attribute 'kind'