Created
October 30, 2017 16:46
-
-
Save csinchok/0232e6460f0e56fe7b78df4725ea4805 to your computer and use it in GitHub Desktop.
VSCode sample settings
This file contains 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
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"**/__pycache__": true, | |
".cache": true, | |
"**/*.py[co]": true, | |
"bin" : true, | |
"lib" : true, | |
"lib64": true, | |
"share": true, | |
"include" : true, | |
".vagrant" : true | |
}, | |
"python.pythonPath": "./bin/python", | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.flake8Path": "./bin/flake8" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment