在 VSCode 中,如何在 python 文件上应用单引号,而不仅仅是打字稿,更漂亮?
In VSCode, how to apply single quotes on python files, not only to typescript, with prettier?
为什么单引号应用于打字稿,而不应用于 python 文件?我安装了 prettier,但是当我保存文件时,.ts 文件会自动格式化并应用单引号,但 .py 文件不会。我在 settings.json 文件中有这个设置:
"prettier.singleQuote": true,
我看到它应用于 angular 个文件,但没有应用于 python 个文件。
因为Prettier扩展只支持these languages:
JavaScript · TypeScript · Flow · JSX · JSON
CSS · SCSS · Less
HTML · Vue · Angular
GraphQL · Markdown · YAML
不包括python
。
而且你可以发现,如果你在 python 文件中 select Format Document With...
,它不会列出 Prettier。
为什么单引号应用于打字稿,而不应用于 python 文件?我安装了 prettier,但是当我保存文件时,.ts 文件会自动格式化并应用单引号,但 .py 文件不会。我在 settings.json 文件中有这个设置:
"prettier.singleQuote": true,
我看到它应用于 angular 个文件,但没有应用于 python 个文件。
因为Prettier扩展只支持these languages:
JavaScript · TypeScript · Flow · JSX · JSON
CSS · SCSS · Less
HTML · Vue · Angular
GraphQL · Markdown · YAML
不包括python
。
而且你可以发现,如果你在 python 文件中 select Format Document With...
,它不会列出 Prettier。