forked from dapr/durabletask-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
34 lines (34 loc) · 884 Bytes
/
settings.json
File metadata and controls
34 lines (34 loc) · 884 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
{
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.rulers": [
119
],
},
"autopep8.args": [
"--max-line-length=119"
],
"python.analysis.typeCheckingMode": "basic",
"python.testing.pytestArgs": [
"-v",
"--cov=durabletask/",
"--cov-report=lcov",
"tests/"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"coverage-gutters.showLineCoverage": true,
"coverage-gutters.coverageFileNames": [
"coverage.lcov",
"lcov.info",
"cov.xml",
"coverage.xml",
"jacoco.xml",
"coverage.cobertura.xml"
],
"makefile.configureOnOpen": false
}