File tree Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 13
13
"vscode" : {
14
14
"extensions" : [
15
15
" tamasfe.even-better-toml" ,
16
- " ms-python.python" ,
17
16
" ms-python.vscode-pylance" ,
18
17
" ms-python.debugpy" ,
19
18
" charliermarsh.ruff" ,
20
- " tekumara.typos-vscode"
19
+ " tekumara.typos-vscode" ,
20
+ " littlefoxteam.vscode-python-test-adapter" ,
21
+ " hbenl.vscode-test-explorer" ,
22
+ " ryanluker.vscode-coverage-gutters"
21
23
],
22
24
"settings" : {
25
+ "extensions.ignoreRecommendations" : true ,
23
26
"python.defaultInterpreterPath" : " ~/.cache/pypoetry/virtualenvs/jumpstarter-64_PDEHR-py3.11/bin/python" ,
24
27
"[python]" : {
28
+ "editor.formatOnType" : true ,
25
29
"editor.formatOnSave" : true ,
26
30
"editor.defaultFormatter" : " charliermarsh.ruff"
27
31
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"recommendations" : [
3
3
" tamasfe.even-better-toml" ,
4
- " ms-python.python" ,
5
4
" ms-python.vscode-pylance" ,
6
5
" ms-python.debugpy" ,
7
6
" charliermarsh.ruff" ,
8
- " tekumara.typos-vscode"
7
+ " tekumara.typos-vscode" ,
8
+ " littlefoxteam.vscode-python-test-adapter" ,
9
+ " hbenl.vscode-test-explorer" ,
10
+ " ryanluker.vscode-coverage-gutters"
11
+ ],
12
+ "unwantedRecommendations" : [
13
+ " ms-python.autopep8"
9
14
]
10
15
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "python.testing.pytestArgs" : [
3
+ " ." ,
4
+ " --cov" ,
5
+ " --cov-report=html" ,
6
+ " --cov-report=xml"
7
+ ],
8
+ "python.testing.unittestEnabled" : false ,
9
+ "python.testing.pytestEnabled" : true
10
+ }
You can’t perform that action at this time.
0 commit comments