如何在用户设置中为 VS Code python Sort Imports 配置行长度?

How to configure line length for VS Code python Sort Imports in user settings?

我正在使用 VS Code Python 扩展的 Sort Imports 函数。我想将此行长度配置为 100;但是,我一直无法在我的 settings.json 文件中正确设置它。从文档来看,"python.sortImports.args": ["-l", "100"] 似乎应该可以工作,但它给了我一个错误:Invalid patch string: Skipped 1 files.

有什么想法吗?

__init__.py 文件上使用排序导入存在一个已知错误。这是完整的解决方案:

"python.sortImports.args": ["-ns", "__init__.py", "-l", "100"],