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.
21 lines
513 B
21 lines
513 B
// 将设置放入此文件中以覆盖默认值和用户设置。
|
|
{
|
|
"editor.fontSize": 16,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"vue"
|
|
],
|
|
"files.autoSave": "afterDelay",
|
|
"editor.formatOnType": true,
|
|
"editor.formatOnSave": true,
|
|
"files.associations": {
|
|
"*.js": "javascriptreact"
|
|
},
|
|
"emmet.triggerExpansionOnTab": true,
|
|
"vsicons.projectDetection.disableDetect": true,
|
|
"editor.tabSize": 2,
|
|
}
|