Created
April 13, 2020 23:54
-
-
Save lucidfrontier45/623f6ceccaaf0ba3f7e1bee9d43d57ed to your computer and use it in GitHub Desktop.
vscode-setting for python
This file contains 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.pythonPath": "venv/bin/python3.7", | |
"python.linting.flake8Enabled": true, | |
"python.linting.enabled": true, | |
"python.formatting.provider": "black", | |
"[python]": { | |
"editor.formatOnPaste": false, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment