You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
2 years ago
|
{
|
||
|
// 在保存时格式化文件
|
||
|
"editor.formatOnSave": true,
|
||
|
// 文件格式化配置
|
||
|
"[json]": {
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
},
|
||
|
// 配置语言的文件关联
|
||
|
"files.associations": {
|
||
|
"pages.json": "jsonc", // pages.json 可以写注释
|
||
|
"manifest.json": "jsonc" // manifest.json 可以写注释
|
||
|
}
|
||
|
}
|