Last active
March 20, 2023 01:27
-
-
Save SaulOviedo/be4c1ed3e861dc5416050b83e076cbca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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