-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSmartProBono.code-workspace
More file actions
39 lines (39 loc) · 1.03 KB
/
Copy pathSmartProBono.code-workspace
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"folders": [
{
"name": "SmartProBono Root",
"path": "."
},
{
"name": "Legal AI Backend",
"path": "./legal_ai_backend"
},
{
"name": "Frontend",
"path": "./frontend"
}
],
"settings": {
"python.defaultInterpreterPath": "./legal_ai_backend/.venv/bin/python",
"python.terminal.activateEnvironment": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"terminal.integrated.cwd": "${workspaceFolder}",
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/node_modules": true
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.pylint",
"ms-vscode.vscode-json",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode"
]
}
}