Created
July 20, 2019 16:15
-
-
Save gscoppino/ced7ddcfb26b42713749629f736ab92f to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"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