Skip to content

Instantly share code, notes, and snippets.

@bmmalone
Last active April 13, 2023 19:29
Show Gist options
  • Save bmmalone/1c7b28e5ba5047642d10453690837cbe to your computer and use it in GitHub Desktop.
Save bmmalone/1c7b28e5ba5047642d10453690837cbe to your computer and use it in GitHub Desktop.
A simple .vscode settings file
{
"editor.rulers": [
88,
120
],
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"workbench.list.openMode": "singleClick",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"test",
"--no-cov"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment