-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsm.code-workspace
32 lines (32 loc) · 921 Bytes
/
sm.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.testing.autoTestDiscoverOnSaveEnabled": false,
"python.testing.pytestEnabled": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": ".venv/bin/dmypy",
"python.linting.mypyArgs": ["run", "--"],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"editorconfig.editorconfig",
"esbenp.prettier-vscode"
]
}
}