Skip to content

Instantly share code, notes, and snippets.

@estshorter
Last active January 5, 2020 06:23
Show Gist options
  • Save estshorter/59c9abe75f1db4a4c478f565b32453b7 to your computer and use it in GitHub Desktop.
Save estshorter/59c9abe75f1db4a4c478f565b32453b7 to your computer and use it in GitHub Desktop.
settings.json for VS Code
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.lintOnSave": true,
"python.linting.flake8Args": [
"--max-line-length",
"88",
"--ignore=E203,W503,W504"
],
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.formatOnSaveTimeout": 1000,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment