Skip to content

Instantly share code, notes, and snippets.

@csinchok
Created October 30, 2017 16:46
Show Gist options
  • Save csinchok/0232e6460f0e56fe7b78df4725ea4805 to your computer and use it in GitHub Desktop.
Save csinchok/0232e6460f0e56fe7b78df4725ea4805 to your computer and use it in GitHub Desktop.
VSCode sample settings
{
"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