VS Code 配置python 格式化代码

yapf由Google开源的Python代码自动格式化工具,根据PEP8规范帮我们自动格式化代码。

1,安装
pip install yapf
2,VS code 的 setting.json 配置
{
	"python.formatting.provider": "yapf", 
	    "editor.formatOnSave": true,
	    "python.formatting.yapfArgs": [
	        "--style=pep8",
	        "{column_limit: 79}" //设置一行最长字符数,默认就是79,所以是79的就不要配置,不然格式化不起作用
	    ]
}

你可能感兴趣的:(vscode,python,python,vscode)