新建 .prettierrc 配置
注意下面的配置最好和vscode中setttings中的一致
纯净版
{
"printWidth": 300,
"tabWidth": 2,
"singleQuote": false,
"semi": true,
"endOfLine": "lf"
}
注释版(无法直接使用)
{
"printWidth": 300,
"tabWidth": 2,
"singleQuote": false,
"semi": true,
"endOfLine": "lf" // 对结尾的换行格式进行检查
}