我在 Windows 上使用 VS Code 1.23.1 的 2018 年 5 月 Python 扩展(2018 年 6 月发布),通过 Anaconda 使用 python 3.6,conda 将黑色从 conda-forge 安装到我的 conda 环境中。
在我的用户 settings.json 中,我有以下内容:
"python.formatting.blackArgs": [
"--line-length 80"
],
我认为这将是构建它以在 VS Code Python 格式中将参数传递给黑色的正确方法。
但是,在我的 python 输出窗格中,我得到以下信息:
Formatting with black failed.
Error: Error: no such option: --line-length 80
编辑:如果我将我的 settings.json 编辑为没有参数,例如:
"python.formatting.blackArgs": [],
黑色按预期工作。
有谁知道如何将参数正确传递给新的(截至 2018 年 6 月)黑色格式化程序?