Import语句在VSCODE中自动转换为多行

问题描述 投票:0回答:1

我的VSCode编辑器会自动将导入语句包装到保存或格式化文档的新行中:

之前:enter image description here

后:

enter image description here

我不想要这种行为。如何禁用此规则?

我正在使用Angular 7打字稿进行编程,并在其上安装了以下扩展:

  1. Angular Essentials
  2. 漂亮
  3. TSlint

请帮我删除此规则或行为。

谢谢。

typescript visual-studio-code formatting angular7 prettier
1个回答
0
投票

这是由Prettier引起的。

我不认为你可以自己禁用它(没有在导入上面使用// prettier-ignore注释)但你可以尝试增加更漂亮的开始包装使用prettier.printWidth设置的行长度

© www.soinside.com 2019 - 2024. All rights reserved.