forked from UiPath/uipath-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
29 lines (29 loc) · 743 Bytes
/
Copy pathsettings.json
File metadata and controls
29 lines (29 loc) · 743 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
{
"window.title": "${rootName}${separator}${activeEditorMedium}",
"files.exclude": {
"**/*.pyc": true,
"**/__pycache__": true,
".pytest_cache": true,
".mypy_cache": true,
".ruff_cache": true,
".venv": true
},
// Formatting
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#0099cc",
"titleBar.inactiveBackground": "#0099cc"
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python-envs.pythonProjects": []
}