跳转至

python格式化工具

black

在vscode安装black插件,然后在当前工作项目的根目录创建pyproject.toml插件,写入如下内容:

[tool.black]
line-length = 120
target-version = ['py38', 'py39']
exclude = '''
/(
    .git
    | .mypy_cache
    | .venv
    | _build
    | buck-out
    | build
    | dist
)/
'''
include = '\.pyi?$'
skip-string-normalization = true

更多的配置参数参考官方文档: https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-format

https://blog.kyomind.tw/pyproject-toml/

评论