如果你在使用 Visual Studio Code (VSCode) 时发现 flake8 的输出无法捕获,可以尝试以下方法解决:
pip install flake8
"python.linting.flake8Args": [
"--output-file=${workspaceFolder}/.vscode/flake8-output.txt"
],
"python.linting.lintOnSave": "package",
"files.exclude": {
"**/.vscode": false
}
这将使 flake8 将输出保存到一个文件中,并在保存时运行 linting。
领取专属 10元无门槛券
手把手带您无忧上云