debugpy/debugpy.code-workspace
2020-01-17 11:57:13 -08:00

22 lines
549 B
Text

{
"folders": [
{
"path": "."
}
],
"settings": {
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.envFile": "${workspaceFolder}/.env",
"python.formatting.provider": "black",
"files.exclude": {
"**/*.pyc": true,
"**/__pycache__": true,
".tox": true,
"src/debugpy.egg-info": true,
},
"python.testing.pytestEnabled": true,
},
}