-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homebridge-automower-platform.code-workspace
44 lines (44 loc) · 1.25 KB
/
homebridge-automower-platform.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
{
"folders": [
{
"path": "./"
}
],
"extensions": {
"recommendations": [
"hbenl.vscode-test-explorer",
"connorshea.vscode-test-explorer-status-bar",
"dbaeumer.vscode-eslint",
"kavod-io.vscode-jest-test-adapter",
"ms-vscode.test-adapter-converter",
"ms-vscode.live-server",
"ryanluker.vscode-coverage-gutters"
]
},
"settings": {
"terminal.explorerKind": "integrated",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"typescript.preferences.quoteStyle": "single",
"workbench.colorCustomizations": {
"debugConsole.infoForeground": "#d3d7cf"
},
"eslint.enable": true,
"editor.tabSize": 4,
"files.exclude": {
".devcontainer": true,
"*.code-workspace": true,
".vscode": true,
"build": true,
"dist": true,
".gitattributes": true,
"LICENSE": true,
"**/bin": true,
"**/obj": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
}
}
}