-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpivot-table.code-workspace
More file actions
46 lines (45 loc) · 1.11 KB
/
Copy pathpivot-table.code-workspace
File metadata and controls
46 lines (45 loc) · 1.11 KB
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
{
"folders": [
{
"path": ".",
"name": "📁 Root"
},
{
"path": "backend",
"name": "⚙️ Backend"
},
{
"path": "frontend",
"name": "🎨 Frontend"
}
],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder:⚙️ Backend}/.venv/bin/python",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
},
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"**/.venv": true
}
}
}