在 VScode 包装中更漂亮

Prettier in VS code wraping

我在 VS 代码中使用了 prettier。当我写这样的东西时:

document.getElementById(`current--${activePlayer}`).textContent = currentScore;

它被格式化为

  document.getElementById(
    `current--${activePlayer}`
  ).textContent = currentScore;

有没有办法保持第一种方式? 谢谢

打印宽度

您可以在您的项目中创建一个更漂亮的配置文件并增加打印宽度的值。当代码的长度超过编辑器中的默认值时,代码往往会换行。

您可以在.prettierrc文件中配置prettier规则。

{
  "printWidth": 100,
}