projet-reseaux-profond/.vscode/settings.json

15 lines
402 B
JSON
Raw Normal View History

2022-03-19 21:57:28 +00:00
{
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.banditEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
2022-04-05 20:38:05 +00:00
},
"jupyter.jupyterServerType": "remote"
}