Skip to content

Instantly share code, notes, and snippets.

@nytr0gen
Last active December 5, 2017 18:33
Show Gist options
  • Save nytr0gen/0576a4b0a582520c1e740023a64f05f6 to your computer and use it in GitHub Desktop.
Save nytr0gen/0576a4b0a582520c1e740023a64f05f6 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"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