Skip to content

Instantly share code, notes, and snippets.

@skymoore
Last active March 21, 2024 20:57
Show Gist options
  • Save skymoore/c518112975d426248691e8d5f1892843 to your computer and use it in GitHub Desktop.
Save skymoore/c518112975d426248691e8d5f1892843 to your computer and use it in GitHub Desktop.
python vscodium settings
{
"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