-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpolydodo.code-workspace
61 lines (61 loc) · 1.33 KB
/
polydodo.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
{
"folders": [
{
"name": "Polydodo",
"path": "."
},
{
"name": "AI",
"path": "ai"
},
{
"name": "Server",
"path": "backend"
},
{
"name": "Mobile client",
"path": "mobile"
},
{
"name": "Web client",
"path": "web"
}
],
"settings": {
"prettier.configPath": "../.prettierrc.yaml",
"eslint.packageManager": "yarn",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code"
},
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "autopep8",
"python.pythonPath": "/usr/bin/python",
"git.pullTags": false
},
"extensions": {
"recommendations": [
"christian-kohler.path-intellisense",
"ms-python.python",
"2gua.rainbow-brackets",
"esbenp.prettier-vscode",
"eamodio.gitlens",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"dart-code.flutter"
]
}
}