VS Code 和 Python,isort 没有完成它的工作
VS Code and Python, isort doesn't do its job
我已经安装了 black
和 isort
用于 VS Code 中的代码格式化。
黑色有效,而 isort
似乎无效。
如果我从命令行 运行 isort
没有问题。
我试过修改 setting.json
无济于事。这是最新版本:
{
"window.zoomLevel": 0,
/** "editor.codeActionsOnSave": null */
/** Enable format on save */
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
/** Pyformat use it's own code action to prevent confliction with other tools. */
"source.organizeImports.pyformat": true,
"source.organizeImports.python": true
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.languageServer": "Pylance",
/** "python.sortImports.path": "isort", */
"python.sortImports.args": [
"-m 3",
"-tc",
"-w 88"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=88"
],
...
有什么建议吗?
VS Code 一次只支持使用一个格式化程序。然而, 答案中描述了一种解决方法:
const firstFormatter = commands.executeCommand('editor.action.formatDocument');
firstFormatter.then(() => myFormat());
我个人将其配置为使用黑色,然后将命令附加到 运行 第二个。
我已经安装了 black
和 isort
用于 VS Code 中的代码格式化。
黑色有效,而 isort
似乎无效。
如果我从命令行 运行 isort
没有问题。
我试过修改 setting.json
无济于事。这是最新版本:
{
"window.zoomLevel": 0,
/** "editor.codeActionsOnSave": null */
/** Enable format on save */
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
/** Pyformat use it's own code action to prevent confliction with other tools. */
"source.organizeImports.pyformat": true,
"source.organizeImports.python": true
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.languageServer": "Pylance",
/** "python.sortImports.path": "isort", */
"python.sortImports.args": [
"-m 3",
"-tc",
"-w 88"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=88"
],
...
有什么建议吗?
VS Code 一次只支持使用一个格式化程序。然而,
const firstFormatter = commands.executeCommand('editor.action.formatDocument');
firstFormatter.then(() => myFormat());
我个人将其配置为使用黑色,然后将命令附加到 运行 第二个。