我正在尝试将我的 python 格式化程序设置为 autopep8。它已正确安装,但它从不作为 VSCode 中的格式化选项。
"python.formatting.autopep8Path": "C:\\Users\\DawsonSchaffer\\AppData\\Roaming\\Python\\Python39\\Scripts\\autopep8.exe",
"python.formatting.autopep8Args": [
"--max-line-length",
"160",
"--aggressive",
"--aggressive",
"--in-place"
],
"[python]": {
"editor.defaultFormatter": "autopep8",
},
我已经更改了所有设置。但是我不确定要为 autopep8 放什么。
"[python]": {
"editor.defaultFormatter": "ms-python.python",
},
or
"[python]": {
"editor.defaultFormatter": "autopep8",
},
控制托盘中也没有 autopep8。
谢谢道森