Skip to content

Instantly share code, notes, and snippets.

@ozgurkalan
Last active January 21, 2023 08:34
Show Gist options
  • Save ozgurkalan/09c0941f99371df83e94bd1515f3c034 to your computer and use it in GitHub Desktop.
Save ozgurkalan/09c0941f99371df83e94bd1515f3c034 to your computer and use it in GitHub Desktop.
VSCode Workspace Awesomeness
{
"folders": [
{"path": "."},
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/env": true,
"**/.venv": true,
"**/.idea": true,
"**/.pytest_cache":true,
"*.egg-info/":false,
"**/__archive__": false,
"**/.vscode":false,
},
"workbench.colorCustomizations":{
"statusBar.background": "#82e313",
},
"terminal.integrated.inheritEnv": false,
"python.formatting.provider": "black",
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment