-1

我收到了更漂亮的错误。如何解决这个问题

4

1 回答 1

0

看起来,无论出于何种原因,在它正在寻找它的地方,即你的根文件夹中都没有更漂亮的配置文件。

我会~\.prettierrc.js通过键入cd ~\ && dir /ah并查看是否.pretterrc.js显示来检查文件是否存在。如果没有,请创建该文件并复制:

module.exports = {
  trailingComma: "es5",
  tabWidth: 4,
  semi: false,
  singleQuote: true,
};

这只是在这里找到的默认配置:https ://prettier.io/docs/en/configuration.html

于 2020-11-24T07:40:01.040 回答