Skip to content

Instantly share code, notes, and snippets.

@Tinitto
Created March 30, 2018 08:36
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 Tinitto/8d9f9638ff54e0a8351e4ba2d8a37441 to your computer and use it in GitHub Desktop.
Save Tinitto/8d9f9638ff54e0a8351e4ba2d8a37441 to your computer and use it in GitHub Desktop.
Settings to ease python development in Visual Studio Code using pylint for linting and autopep8 for formatting on save
{
"html.format.enable": false,
"python.pythonPath": "${workspaceRoot}/env/bin/python3",
"python.linting.lintOnSave": true,
"python.formatting.autopep8Path": "${workspaceRoot}/env/lib/python3.5/site-packages/autopep8.py",
"python.autoComplete.extraPaths": [
"${workspaceRoot}/env/lib/python3.5",
"${workspaceRoot}/env/lib/python3.5/site-packages"
],
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment