每次我尝试提交或运行
yarn format
(使用此脚本:"format": "prettier --config \"packages/**/*.{ts,tsx}\""
)或运行make fmt
时,我都会收到以下错误,因为我知道我的项目中没有此类错误:
PS C:\Users\GAMER\Desktop\hey-lady\web> make fmt
yarn format --write
yarn run v1.22.21
$ prettier --write "packages/**/*.{ts,tsx}" --write
[error] Invalid configuration for file "C:\Users\GAMER\Desktop\hey-lady\web\packages\app\components\AccountProfileEnglishLevel.tsx":
[error] Unexpected token ':'
error Command failed with exit code 2.
这是我的环境:
这是我的
.prettierrc
文件配置:
{
"semi": true,
"tabWidth": 2,
"printWidth": 120,
"singleQuote": false,
"trailingComma": "none",
"arrowParens": "always"
}
我尝试运行 Prettier 来格式化我的代码并将其推送到 GitHub 存储库,但每次都会出现此错误。
看起来该错误特定于文件“C:\Users\GAMER\Desktop\hey-lady\web\packages p