Last active
March 21, 2024 20:57
-
-
Save skymoore/c518112975d426248691e8d5f1892843 to your computer and use it in GitHub Desktop.
python vscodium settings
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
{ | |
"editor.formatOnSave": true, | |
"python.defaultInterpreterPath": "/Users/smoore/Develop/venv/bin/python3", | |
"python.languageServer": "Jedi", // requires: pip install jedi-language-server | |
"flake8.args": [ | |
"--max-line-length=88", | |
"--ignore=E203,E501,W503" | |
], | |
"black-formatter.args": [ | |
"--line-length", | |
"88" | |
], | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"editor.formatOnSave": true, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment