代码美化:五彩斑斓的 Black —— Python 代码格式化工具 https://muzing.top/posts/a29e4743/
写过Go之后,觉得自动格式化真是个好东西(除了可能不太适合C/C++)
black是一个python包,可以使用pip安装
一般应该是不太需要单独调整的,默认的规则应该就是最标准的规则
{
...
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
}