Skip to content

Instantly share code, notes, and snippets.

@gscoppino
Created July 20, 2019 16:15
Show Gist options
  • Save gscoppino/ced7ddcfb26b42713749629f736ab92f to your computer and use it in GitHub Desktop.
Save gscoppino/ced7ddcfb26b42713749629f736ab92f to your computer and use it in GitHub Desktop.
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.encoding": "utf8",
"editor.detectIndentation": false, // Needed to set spaces, tab size
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"files.eol": "\n",
"files.insertFinalNewline": true,
"editor.formatOnSave": true,
// Python-specific settings
"python.pythonPath": "./envs/default/bin/python",
"python.formatting.provider": "autopep8",
"python.linting.pylintEnabled": true,
// Improve VS Code performance for large workspaces
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
// Python-specific exclusions
"**/envs/**": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment