File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 3
3
" charliermarsh.ruff" ,
4
4
" ms-python.black-formatter" ,
5
5
" ms-python.python" ,
6
- " ms-python.vscode-pylance"
6
+ " ms-python.vscode-pylance" ,
7
+ " ms-python.mypy-type-checker"
7
8
]
8
9
}
Original file line number Diff line number Diff line change 7
7
"files.insertFinalNewline" : true ,
8
8
"files.trimFinalNewlines" : true ,
9
9
"[python]" : {
10
+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
10
11
"editor.formatOnSave" : true ,
11
12
"editor.codeActionsOnSave" : {
12
13
"source.fixAll" : true ,
13
14
"source.organizeImports" : true
14
15
},
15
- "editor.defaultFormatter" : null
16
16
},
17
17
"python.languageServer" : " Pylance" ,
18
- "python.testing.pytestArgs" : [" -vvv" , " python" ],
18
+ "python.testing.pytestArgs" : [
19
+ " -vvv" ,
20
+ " python"
21
+ ],
19
22
"python.testing.unittestEnabled" : false ,
20
23
"python.testing.pytestEnabled" : true ,
21
- "python.formatting.provider" : " black" ,
22
- "python.linting.mypyEnabled" : true ,
23
- "python.linting.mypyArgs" : [" --show-column-numbers" , " --no-pretty" ],
24
- "ruff.args" : [" --config=pyproject.toml" ]
24
+ "mypy-type-checker.args" : [
25
+ " --show-column-numbers" ,
26
+ " --no-pretty"
27
+ ],
28
+ "ruff.args" : [
29
+ " --config=pyproject.toml"
30
+ ],
25
31
}
You can’t perform that action at this time.
0 commit comments