File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 44
55 // List of extensions which should be recommended for users of this workspace.
66 "recommendations" : [
7+ " github.vscode-github-actions" ,
78 " ms-python.python" ,
8- " ms-python.vscode-pylance"
9+ " ms-python.vscode-pylance" ,
10+ " ms-python.black-formatter" ,
11+ " ms-python.isort" ,
12+ " ms-python.flake8"
913 ],
1014 // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
1115 "unwantedRecommendations" : [
Original file line number Diff line number Diff line change 11{
22 "restructuredtext.confPath" : " " ,
33 "python.defaultInterpreterPath" : " .venv/bin/python" ,
4- "python.formatting.provider" : " black " ,
4+ "python.formatting.provider" : " none " ,
55 "python.linting.pylintEnabled" : false ,
66 "python.linting.flake8Enabled" : true ,
77 "python.linting.pycodestyleEnabled" : false ,
88 "python.linting.enabled" : true ,
99
1010 "[python]" : {
1111 "editor.formatOnSave" : true ,
12- "editor.defaultFormatter" : " ms-python.python"
12+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
13+ "editor.codeActionsOnSave" : {
14+ "source.organizeImports" : true
15+ },
1316 },
1417 "python.testing.pytestArgs" : [
1518 " tests"
You can’t perform that action at this time.
0 commit comments