mirror of
https://github.com/seepine/action-miniprogram-ci.git
synced 2025-01-19 03:06:36 +08:00
13 lines
300 B
JSON
13 lines
300 B
JSON
{
|
|
// 保存时执行eslint
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
// 从不展示扩展缩写
|
|
"emmet.showExpandedAbbreviation": "never",
|
|
// 关闭代码区域小地图
|
|
"editor.minimap.enabled": false,
|
|
// 代码过长换行
|
|
"editor.wordWrap": "on"
|
|
}
|