-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathse-ezview2.code-workspace
More file actions
37 lines (37 loc) · 947 Bytes
/
se-ezview2.code-workspace
File metadata and controls
37 lines (37 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.pylint",
"ryanluker.vscode-coverage-gutters",
"davidanson.vscode-markdownlint",
"bierner.markdown-preview-github-styles",
]
},
"settings": {
"python.linting.pylintEnabled": true,
"python.testing.pytestEnabled": true,
// See also: .vscode/launch.json
// - https://code.visualstudio.com/docs/python/testing#_pytest-configuration-settings
// - https://github.com/microsoft/vscode-python/issues/693
"python.testing.pytestArgs": [
"tests",
"--cov=.",
"--cov-branch",
"--cov-report=xml",
"--cov-report=html",
"--cov-report=term-missing"
],
"coverage-gutters.coverageReportFileName": "htmlcov/**/index.html",
"python.analysis.typeCheckingMode": "basic",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.eol": "\n"
}
}