-
Notifications
You must be signed in to change notification settings - Fork 1
/
yardsalelocator.code-workspace
40 lines (39 loc) · 1.21 KB
/
yardsalelocator.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
{
"folders": [
{
"path": "yardsalelocator.client"
},
{
"path": "yardsalelocator.server"
}
],
"settings": {
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "vscode-icons",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"javascript.referencesCodeLens.enabled": true,
"javascript.referencesCodeLens.showOnAllFunctions": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.referencesCodeLens.showOnAllFunctions": true,
"javascript.implicitProjectConfig.checkJs": true,
"files.exclude": {
"**/.nyc_*": true,
"**/coverage": true,
"**/node_modules": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"vetur.format.defaultFormatter.js": "vscode-typescript",
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.codeActionsOnSave.mode": "all",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
}
}