Skip to content

Instantly share code, notes, and snippets.

@abstractmachines
Created May 6, 2021 01:38
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 abstractmachines/73d80b1d14d3f90a5747dfeca7921184 to your computer and use it in GitHub Desktop.
Save abstractmachines/73d80b1d14d3f90a5747dfeca7921184 to your computer and use it in GitHub Desktop.
Python VSCode with black and flake8

Python VSCode settings.json w black and flake8

{
    "editor.formatOnSave": true,
    "python.formatting.provider": "black",
    "files.insertFinalNewline": true,
    "python.testing.pytestEnabled": true,
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.linting.enabled": true,
    "python.defaultInterpreterPath": "python3",
    "python.pythonPath": "python3"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment