Created
March 30, 2018 08:36
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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