Skip to content

Instantly share code, notes, and snippets.

@vasinkd
Created July 16, 2020 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vasinkd/4dd8d8ebe45b0dbf3971d886dc66d3b8 to your computer and use it in GitHub Desktop.
Save vasinkd/4dd8d8ebe45b0dbf3971d886dc66d3b8 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"editor.rulers": [
79
],
"python.linting.flake8Enabled": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=79"
],
"editor.formatOnSave": true,
"python.linting.flake8Args": [
"--ignore=W503,E203"
],
"workbench.colorTheme": "Visual Studio Dark",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment