Skip to content

Instantly share code, notes, and snippets.

@deliseev
Created August 16, 2019 12:15
Show Gist options
  • Save deliseev/4e44523769f33e980f442f73af3da106 to your computer and use it in GitHub Desktop.
Save deliseev/4e44523769f33e980f442f73af3da106 to your computer and use it in GitHub Desktop.
VSCode settings file for python projects
{
"python.autoComplete.addBrackets": true,
"python.formatting.blackPath": "${env:HOME}/Library/Python/3.7/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "${env:HOME}/Library/Python/3.7/bin/pylint",
"python.poetryPath": "${env:HOME}/Library/Python/3.7/bin/poetry",
"python.pythonPath": ".venv/bin/python",
"python.testing.nosetestsEnabled": false,
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "${env:HOME}/Library/Python/3.7/bin/pytest",
"python.testing.unittestEnabled": false,
"terminal.integrated.shell.osx": "/usr/local/bin/fish"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment