File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 2
2
"recommendations" : [
3
3
" ms-python.python" ,
4
4
" editorconfig.editorconfig" ,
5
- " njpwerner.autodocstring"
5
+ " njpwerner.autodocstring" ,
6
+ " ms-python.isort" ,
7
+ " ms-python.black-formatter"
6
8
]
7
9
}
Original file line number Diff line number Diff line change 1
1
{
2
- "python.formatting.provider" : " black" ,
3
2
"python.linting.pylintEnabled" : true ,
4
3
"python.terminal.activateEnvInCurrentTerminal" : true ,
5
4
"autoDocstring.docstringFormat" : " pep257" ,
6
- "python.analysis.typeCheckingMode" : " basic"
5
+ "python.analysis.typeCheckingMode" : " basic" ,
6
+ "[python]" : {
7
+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
8
+ "editor.formatOnSave" : true ,
9
+ "editor.codeActionsOnSave" : {
10
+ "source.organizeImports" : true
11
+ },
12
+ },
13
+ "isort.args" : [
14
+ " --profile" ,
15
+ " black"
16
+ ],
7
17
}
You can’t perform that action at this time.
0 commit comments