-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpomelo.code-workspace
64 lines (64 loc) · 1.85 KB
/
pomelo.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"folders": [
{
"path": "."
},
{
"path": "clients/vue-web"
},
{
"path": "clients/react-web"
}
],
"settings": {
"editor.tabSize": 2,
"editor.wordWrap": "on",
"files.insertFinalNewline": true,
"files.eol": "\n",
// "vetur.validation.template": false,
// "vetur.validation.script": false, // package 不在根目录下,ts 引用时使用别名"@/" 找不到模块
"vetur.grammar.customBlocks": {
"docs": "md",
"i18n": "json",
"router": "js"
},
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_line_length": 120,
"wrap_attributes": "auto",
"end_with_newline": false
}
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
// "javascript.implicitProjectConfig.experimentalDecorators": true,
"javascript.preferences.quoteStyle": "single",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.preferences.quoteStyle": "single",
"typescript.updateImportsOnFileMove.enabled": "always",
// 自动修复
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "never"
},
"i18n-ally.fullReloadOnChanged": true,
"i18n-ally.keystyle": "nested",
"i18n-ally.sourceLanguage": "zh-CN",
"i18n-ally.localesPaths": ["src/i18n", "src/i18n/langs"],
"i18n-ally.ignoreFiles": ["zh-CN_basic.json"],
"i18n-ally.translate.engines": [
"baidu",
"google",
"deepl"
],
"liveServer.settings.multiRootWorkspaceName": "pomelo"
}
}