Skip to content

Instantly share code, notes, and snippets.

@matheuscas
Last active October 3, 2016 14:56
Show Gist options
  • Save matheuscas/3c7f8010a92b71a91db177648a3cfca2 to your computer and use it in GitHub Desktop.
Save matheuscas/3c7f8010a92b71a91db177648a3cfca2 to your computer and use it in GitHub Desktop.
My vscode workspace settings
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/**.map":true,
"**/**.pyc": true
},
//python
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": ["--load-plugins", "pylint_django"], //for django projects
"python.formatting.formatOnSave": true,
//editor
"editor.renderIndentGuides": true,
"editor.glyphMargin": true,
//misc
"files.trimTrailingWhitespace": true,
"terminal.integrated.fontLigatures": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment