2

Vscode 没有在保存时格式化我的代码。

因此,我的 vscode 版本是:

  • Vscode 1.37.0(作为错误拍摄的一部分对其进行了更新,不确定以前的版本,但这也不起作用)
  • autopep8 1.4.4 (pycodestyle: 2.5.0)

我的 settings.json 看起来像这样:

{
    "editor.detectIndentation": false,
    "editor.formatOnSave": true,
    "editor.insertSpaces": true,
    "editor.tabSize": 4,
    "python.formatting.autopep8Args": [
        "--max-line-length=120"
    ],
    "python.formatting.provider": "autopep8",
    "python.linting.enabled": true,
    "python.linting.lintOnSave": true,
    "python.linting.pep8Args": [
        "--max-line-length=120"
    ],
    "python.linting.pep8Enabled": true,
    "python.linting.pylintEnabled": false,
    "python.pythonPath": "/home/me/.python_virtualenvs/somepath"
}

为什么保存时自动格式化不起作用?

补充说明:

  • 这正确格式化了我的文件:python -m autopep8 --max-line-length 120 --in-place --aggressive --aggressive my_dirty_code.py
  • 我可以Formatting with autopep8在保存的任务栏中看到
4

1 回答 1

1

尝试增加Format on Save Timeoutin Text Editor -> Formatting。例如将其设置为 2000 毫秒。

于 2019-11-09T08:06:36.840 回答