-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.code-workspace
47 lines (47 loc) · 1.2 KB
/
project.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
{
"folders": [
{
"path": ".github"
},
{
"path": "app"
},
{
"path": "firebase"
}
],
"settings": {
"window.title": "FullStacksDev Angular and Firebase base template",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit",
"source.fixAll.eslint": "never"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.linkedEditing": true,
"eslint.validate": ["javascript", "typescript", "html"],
"editor.wordWrap": "on",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.labelFormat": "default",
"typescript.tsdk": "app/node_modules/typescript/lib"
},
"extensions": {
"recommendations": [
"angular.ng-template",
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"johnpapa.angular-essentials",
"toba.vsfire"
]
}
}