File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1616
1717 // The optional 'workspaceFolder' property is the path VS Code should open by default when
1818 // connected. This is typically a file mount in .devcontainer/docker-compose.yml
19- "workspaceFolder" : " /srv/app/"
19+ "workspaceFolder" : " /srv/app/" ,
20+ "customizations" : {
21+ "vscode" : {
22+ "extensions" : [
23+ " ms-python.python" ,
24+ " ms-python.black-formatter" ,
25+ " ms-python.isort"
26+ ]
27+ }
28+ }
2029
2130 // Features to add to the dev container. More info: https://containers.dev/features.
2231 // "features": {},
Original file line number Diff line number Diff line change 33 " ."
44 ],
55 "python.testing.unittestEnabled" : false ,
6- "python.testing.pytestEnabled" : true
6+ "python.testing.pytestEnabled" : true ,
7+ "[python]" : {
8+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
9+ "editor.formatOnSave" : true ,
10+ "editor.codeActionsOnSave" : {
11+ "source.organizeImports" : true
12+ },
13+ },
14+ "isort.args" : [
15+ " --profile" ,
16+ " black"
17+ ],
718}
You can’t perform that action at this time.
0 commit comments