-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonopoly.code-workspace
More file actions
32 lines (32 loc) · 926 Bytes
/
Copy pathmonopoly.code-workspace
File metadata and controls
32 lines (32 loc) · 926 Bytes
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
{
"folders": [
{ "name": "board","path": "./board" },
{ "name": "gamemaster","path": "./gamemaster" },
{ "name": "mosquitto","path": "./mosquitto" },
{ "name": "player","path": "./player" },
{ "name": "ingress","path": "./ingress" },
{ "name": "monopoly", "path": "." }
],
"settings": {
"python.testing.pytestEnabled": false,
"ruff.enable": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
},
"[javascript, vue]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
},
},
"extensions": {
"recommendations": ["charliermarsh.ruff", "Vue.volar"]
}
}