13 lines
300 B
JSON
Raw Permalink Normal View History

2023-08-06 22:58:51 +08:00
{
// 保存时执行eslint
"editor.codeActionsOnSave": {
2024-03-22 16:04:40 +08:00
"source.fixAll.eslint": "explicit"
2023-08-06 22:58:51 +08:00
},
// 从不展示扩展缩写
"emmet.showExpandedAbbreviation": "never",
// 关闭代码区域小地图
"editor.minimap.enabled": false,
// 代码过长换行
"editor.wordWrap": "on"
}