-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquant-backtester.code-workspace
More file actions
40 lines (37 loc) · 1.03 KB
/
quant-backtester.code-workspace
File metadata and controls
40 lines (37 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
40
{
"folders": [
{
"path": "."
}
],
"settings": {
// Usa il tuo virtual environment
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/Scripts/python.exe",
// Formattazione e linting
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
// Evita di indicizzare la cartella venv
"files.exclude": {
"**/__pycache__": true,
"**/.venv": true
},
// Impostazioni Git
"git.autofetch": true,
"git.confirmSync": false
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.black-formatter",
"ms-toolsai.jupyter",
"mhutchie.git-graph",
"ms-vscode.gitlens",
"ms-vscode-remote.remote-wsl"
]
}
}