Skip to content

Instantly share code, notes, and snippets.

@SaulOviedo
Last active March 20, 2023 01:27
Show Gist options
  • Save SaulOviedo/be4c1ed3e861dc5416050b83e076cbca to your computer and use it in GitHub Desktop.
Save SaulOviedo/be4c1ed3e861dc5416050b83e076cbca to your computer and use it in GitHub Desktop.
{
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"editor.rulers": [
79,
120
],
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.formatOnSave": true,
"python.formatting.blackArgs": [
"--line-length",
"79"
],
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"isort.args": [
"--src=${workspaceFolder}",
"--profile",
"black"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment