🔧 更新 prettier 配置 (#457)

This commit is contained in:
AzideCupric 2024-01-29 11:00:19 +08:00 committed by GitHub
parent f6ee4a4c1b
commit 517a9db4d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,5 +5,17 @@
"arrowParens": "always",
"singleQuote": false,
"trailingComma": "es5",
"semi": true
"semi": true,
"overrides": [
{
"files": [
"**/devcontainer.json",
"**/tsconfig.json",
"**/tsconfig.*.json"
],
"options": {
"parser": "json"
}
}
]
}