Last active
December 5, 2017 18:33
-
-
Save nytr0gen/0576a4b0a582520c1e740023a64f05f6 to your computer and use it in GitHub Desktop.
VSCode 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
{ | |
"editor.wordWrap": "on", | |
"editor.formatOnPaste": false, | |
"docker.showExplorer": false, | |
// JS specific | |
"eslint.enable": false, | |
// Python specific | |
"python.venvPath": "${workspaceRoot}/.venv", | |
"python.pythonPath": "VIRTUALENV_PATH/bin/python3", | |
"python.autoComplete.extraPaths": [ | |
"VIRTUALENV_PATH/lib/python3.5/site-packages" | |
], | |
"python.formatting.provider": "autopep8", | |
// "python.linting.pylintEnabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": false, | |
"python.linting.enabledWithoutWorkspace": false, | |
"python.linting.pylintArgs": [ | |
"--errors-only", | |
"--load-plugins", "pylint_django" | |
], | |
// Extension and editor preferences | |
"files.autoSave": "onFocusChange", | |
"editor.rulers": [79, 100], | |
"editor.fontSize": 14, | |
"editor.roundedSelection": false, | |
// "editor.renderWhitespace": "boundary", | |
// "explorer.openEditors.visible": 0, | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
"window.zoomLevel": 0, | |
"files.exclude": { | |
"**/*.pyc": true | |
}, | |
"extensions.ignoreRecommendations": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment