mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 10:38:16 +08:00
3c564e2777
* chore: office viewer 增加 snapshot 测试用例 * 简单示例都改成 xml 格式 * 部分文字垂直显示 * 支持链接 tooltip * 支持 shadown * 支持旋转属性 * 修复 behideDoc 导致遮挡问题 * 修复部分 textbox 背景色错误问题 * 修复 textbox 覆盖顺序不正确问题
35 lines
920 B
JSON
35 lines
920 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 2,
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"gitHistory.showEditorTitleMenuBarIcons": false,
|
|
"files.exclude": {
|
|
"**/lib": true,
|
|
"**/esm": true,
|
|
"**/sdk": true,
|
|
"**/tsconfig.tsbuildinfo": true,
|
|
"**/schema.json": true,
|
|
"**/lerna-debug.log": true,
|
|
"**/package-lock.json": true,
|
|
"**/.rollup.cache": true,
|
|
"public/**": true
|
|
},
|
|
"search.exclude": {
|
|
"**/lib": true,
|
|
"**/esm": true,
|
|
"**/sdk": true,
|
|
"**/tsconfig.tsbuildinfo": true,
|
|
"**/schema.json": true,
|
|
"**/lerna-debug.log": true,
|
|
"**/package-lock.json": true,
|
|
"**/.rollup.cache": true,
|
|
"public/**": true,
|
|
"examples/docs.json": true,
|
|
"examples/components/EChartsEditor/option-parts/**/*": true
|
|
},
|
|
"[xml]": {
|
|
"editor.defaultFormatter": "redhat.vscode-xml"
|
|
}
|
|
}
|