Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@oeeckhoutte
Last active December 30, 2022 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oeeckhoutte/12c3222fe310e1e14f7176d06605518d to your computer and use it in GitHub Desktop.
Save oeeckhoutte/12c3222fe310e1e14f7176d06605518d to your computer and use it in GitHub Desktop.
VScode basic config for Python virtualenv with flake8 and black (.vscode/ dir)
{
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "black",
"editor.rulers": [
79
],
"python.linting.pylintEnabled": false,
"python.linting.mypyEnabled": true,
"editor.codeLens": true,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment