-
Notifications
You must be signed in to change notification settings - Fork 1
/
phonebook-demo.code-workspace
45 lines (45 loc) · 1.82 KB
/
phonebook-demo.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
{
"folders": [
{
"path": "."
},
{
"path": "/Users/cliff/git/__phone-book-demo.wiki"
},
{
"path": "/Users/cliff/git/mongodb-rest-api"
}
],
"settings": {
"workbench.colorTheme": "Dark+++",
"workbench.iconTheme": "simple-icons",
"html.format.wrapAttributes": "force-expand-multiline",
"typescript.implementationsCodeLens.enabled": true,
"angular-template-formatter.closeTagSameLine": true,
"html.format.indentInnerHtml": true ,
"angular-template-formatter.indentWidth": 2,
"angular-template-formatter.useSpaces": true,
"html.format.enable": false,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"javascript.autoClosingTags": true,
"javascript.format.enable": true,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"javascript.format.insertSpaceAfterConstructor": true,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.preferences.quoteStyle": "single",
"javascript.suggest.autoImports": true,
"tslint.jsEnable": true,
"[.component.html]": {
"editor.defaultFormatter": "Angular.ng-template"
}
}
}