Skip to content

Instantly share code, notes, and snippets.

@ruslangrimov
Created April 30, 2020 15:35
Show Gist options
  • Save ruslangrimov/c4da2cce585e337fef55e93001d6e7ed to your computer and use it in GitHub Desktop.
Save ruslangrimov/c4da2cce585e337fef55e93001d6e7ed to your computer and use it in GitHub Desktop.
My VSCode settings
{
"window.zoomLevel": 0,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.rulers": [ 80 ],
"terminal.integrated.inheritEnv": false,
"python.dataScience.sendSelectionToInteractiveWindow": true,
"files.trimTrailingWhitespace": true,
"python.linting.flake8Enabled": true,
"python.linting.pylamaEnabled": true,
"python.linting.pycodestyleEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--enable=all",
"--disable=redefined-outer-name,invalid-name,wrong-import-order,missing-docstring",
"--generated-members=cv2.*, numpy.* ,torch.*",
"--extension-pkg-whitelist=cv2,numpy,torch"
],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"kite.showWelcomeNotificationOnStartup": false,
"python.dataScience.askForKernelRestart": false,
"python.dataScience.maxOutputSize": -1,
"terminal.integrated.shell.linux": "/bin/bash",
"workbench.colorTheme": "Visual Studio Dark",
"editor.minimap.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment