使用yapf格式无提示错误

时间:2016-04-15 00:16:15

标签: visual-studio-code

使用Python扩展,使用yapf - 当我点击格式时没有任何反应:

  • VSCode版本:1.0.0
  • 操作系统版本:OSX 10.11.4

我的工作区设置:

// Place your settings in this file to overwrite the default settings
{
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/js-build": true
    },
    "editor.scrollBeyondLastLine": false,
    "python.pythonPath": "/Users/joshma/.envs/venv/bin/python",
    "python.linting.flake8Path": "/Users/joshma/.envs/venv/bin/flake8",
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "editor.formatOnType": true,
    "python.formatting.provider": "yapf",
    "python.formatting.yapfPath": "/Users/joshma/.envs/venv/bin/yapf"
}

我采取的步骤:

  1. 重写对foo('a' )
  2. 的函数调用
  3. 验证是否正在运行cat path/to/file.py | yapf格式为foo('a')
  4. 选择整个文件,cmd + shift + p,格式代码。
  5. 什么都没发生:(
  6. 我可能没有正确设置某些路径/配置 - 是否有某种方法可以调试它?

2 个答案:

答案 0 :(得分:0)

我认为你错过了这个选项,

  

python.formatting.formatOnSave

这是我的配置,格式化正常,

"python.formatting.formatOnSave": true,
"python.formatting.provider": "yapf",
"python.formatting.yapfPath": "/usr/bin/yapf"

答案 1 :(得分:0)

仅尝试保存时格式化选项:

  • Cmd +
  • 搜索“ 保存时格式化”选项,然后打开

或在 settings.json 中添加以下内容:

{
    "python.formatting.provider": "yapf",
    "editor.formatOnSave": true,
}

enter image description here