mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
22 lines
549 B
Text
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,
|
|
},
|
|
}
|