Warm tip: This article is reproduced from serverfault.com, please click

javascript-为什么Prettier不会在VS Code中格式化代码?

(javascript - Why does Prettier does not format code in VS Code?)

发布于 2018-10-01 08:10:13

在安装和启用了ESlint和Prettier的Nuxt应用程序中,我切换到了Visual Studio Code。

当我打开.vue文件并按CMD+ Shift+P 并选择“格式化文档”时,我的文件根本没有被格式化

我的 .prettierrc 设置

{
  "tabWidth": 2,
  "semi": false,
  "singleQuote": true
}

我的源代码行太多,因此无法手动设置它们的格式。我究竟做错了什么?

Questioner
Billal Begueradj
Viewed
11
16.3k 2019-11-02 17:08:33

在对Prettier停止在VSCode中工作感到非常沮丧之后,我如何对其进行排序。

  1. 选择VS Code-> View-> Command Palette,然后键入:Format Document With
  2. 然后Configure Default Formatter...再选择Prettier - Code formatter

这为我神奇地解决了问题。

根据你的情况,这可能会帮助你...