-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandrepg.code-workspace
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy pathandrepg.code-workspace
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint"
]
},
"settings": {
"editor.codeLens": true,
"typescript.autoClosingTags": true,
"typescript.format.enable": true,
"typescript.suggest.autoImports": true,
"typescript.experimental.useTsgo": true,
"typescript.preferences.importModuleSpecifier": "shortest",
"typescript.referencesCodeLens.enabled": true,
"typescript.referencesCodeLens.showOnAllFunctions": true,
"vue.inlayHints.missingProps": true,
"vue.autoInsert.dotValue": true,
"vue.editor.focusMode": true,
"vue.hover.rich": true,
"vue.autoInsert.bracketSpacing": true,
"vue.editor.reactivityVisualization": true,
"vue.format.template.enabled": false,
"vue.codeActions.askNewComponentName": true,
"vue.editor.templateInterpolationDecorators": true,
"[vue]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.autoIndent": "full"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"eslint.format.enable": true,
"css.format.spaceAroundSelectorSeparator": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
}