如何使用 editorconfig 文件和“dotnet format”命令更改 TypeScript 文件的缩进样式?

How can I change the indentation style for TypeScript files with an editorconfig file and the `dotnet format` command?

提问人:costco enjoyer 提问时间:10/22/2023 最后编辑:gunr2171costco enjoyer 更新时间:10/22/2023 访问量:66

问:

我在Visual Studio中有一个使用TypeScript和C#的项目。文件缩进 2 个空格,但我希望它们使用 4。

我创建了一个 .editorconfig 文件并运行,但这只修改了 C# 文件。如何更改所有 TS 文件?dotnet format

C# TypeScript 编辑器配置

评论

0赞 Poul Bak 10/22/2023
选择:工具', '选项', '文本编辑器', 'Javascript/TypeScript', '标签页'。设置为四个空格。然后打开您的文件并单击“格式化”。
0赞 costco enjoyer 10/22/2023
@PoulBak我不想手动打开和格式化每个文件。我想运行一个执行所有文件的命令。
0赞 Martheen 10/22/2023
也许是 CodeMaid?
0赞 Tarazed 10/22/2023
请发布 editorconfig 的内容。您可能需要使用外部文本编辑器来执行此操作。另外,您是否在 Visual Studio 中尝试过 Ctrl+K?
0赞 costco enjoyer 10/22/2023
@Tarazed它不会让我发布整个文件,但这在顶部:[*.{cs,ts}] indent_size = 4

答: 暂无答案