Skip to content

Instantly share code, notes, and snippets.

@jaybo
Created April 15, 2017 22:34
Show Gist options
  • Save jaybo/1f3880905b9dbfc42bfb171a879075f2 to your computer and use it in GitHub Desktop.
Save jaybo/1f3880905b9dbfc42bfb171a879075f2 to your computer and use it in GitHub Desktop.
VSCode settings.json
// Place your settings in this file to overwrite the default settings
{
"python.pythonPath": "C:/WinPython/WinPython-64bit-2.7.10.3/python-2.7.10.amd64/python.exe",
"typescript.check.tscVersion": false,
"workbench.colorTheme": "Visual Studio Dark",
"editor.minimap.enabled": true,
"python.linting.pylintArgs": [
"--disable=C0301", // Line too long
"--disable=C0103", // Invalid function name"
"--disable=C0303", // Trailing whitespace
"--disable=C0111" // :Missing function docstrin"
],
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": true,
"[cpp]": {
"editor.quickSuggestions": false
},
"[c]": {
"editor.quickSuggestions": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment