This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdcrm.code-workspace
74 lines (74 loc) · 2.33 KB
/
hdcrm.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
65
66
67
68
69
70
71
72
73
74
{
"folders": [
{
"path": "."
},
{
"name": "WEB",
"path": "./web"
},
{
"name": "SERVER",
"path": "./server"
}
],
"settings": {
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.bracketSpacing": true,
"prettier.printWidth": 120,
"prettier.jsxBracketSameLine": true,
"prettier.trailingComma": "none",
"editor.tabSize": 2,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"editor.snippetSuggestions": "top",
// "files.autoSave": "afterDelay",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": false
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
// "angularKarmaTestExplorer.debugMode": true,
// "angularKarmaTestExplorer.projectRootPath": "./web",
"testExplorer.sort": "byLocation",
"mochaExplorer.nodePath": null,
"mochaExplorer.mochaPath": "./node_modules/mocha",
"mochaExplorer.files": ["src/**/*.spec.ts", "tests/**/*.spec.ts"],
"mochaExplorer.require": ["ts-node/register", "reflect-metadata"],
"mochaExplorer.timeout": 10000,
"errorLens.enabledDiagnosticLevels": ["error", "warning"],
"eslint.workingDirectories": ["./web", "./server"],
"eslint.options": {
"extensions": [".ts", ".html"]
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "html"]
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"yzhang.markdown-all-in-one",
"christian-kohler.path-intellisense",
"alefragnani.bookmarks",
"eamodio.gitlens",
"hbenl.vscode-test-explorer-liveshare",
"hbenl.vscode-test-explorer",
"hbenl.vscode-mocha-test-adapter",
"ms-vsliveshare.vsliveshare",
"angular.ng-template",
"shyykoserhiy.git-autoconfig",
"gruntfuggly.todo-tree",
"ms-vscode.vscode-typescript-tslint-plugin",
"dbaeumer.vscode-eslint",
"github.vscode-pull-request-github",
// "raagh.angular-karma-test-explorer",
"msjsdiag.debugger-for-chrome",
"usernamehw.errorlens",
"markis.code-coverage"
]
}
}