connectfour / .vscode /settings.json
ClementBM's picture
first commit
ffe7549
raw history blame
No virus
756 Bytes
{
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.pythonPath": "${env:PYTHON_VENV_LOC}",
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
"editor.tabSize": 4,
"[python]": {
"editor.formatOnSave": true
},
"python.formatting.provider": "black",
"files.exclude": {
".mypy_cache": true,
".pytest_cache": true,
".venv": true,
"**/__pycache__": true
},
"files.watcherExclude": {
".venv/**": true,
"**/__pycache__/**": true,
".mypy_cache/**": true,
".pytest_cache/**": true
}
}