Skip to content

Instantly share code, notes, and snippets.

@mrinalkamboj
Created March 25, 2020 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrinalkamboj/65ca645202ca35abaa1b246a34bc8b3e to your computer and use it in GitHub Desktop.
Save mrinalkamboj/65ca645202ca35abaa1b246a34bc8b3e to your computer and use it in GitHub Desktop.
VSCode Settings
{
"code-runner.clearPreviousOutput": true,
"code-runner.showExecutionMessage": false,
"editor.suggestSelection": "first",
"editor.formatOnSave": true,
"kite.showWelcomeNotificationOnStartup": false,
"python.pythonPath": "/home/mkamboj/Workspaces/Python/3.8.2/Learn/localtest/bin/python3.8",
"python.linting.pylintCategorySeverity.convention": "Information",
"python.formatting.provider": "black",
"python.jediEnabled": true,
// "[python]": {
// "editor.defaultFormatter": "ms-python.python"
// },
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"*test*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true,
"code-runner.executorMap": {
"python": "$pythonPath -u $fullFileName"
},
"sqltools.connections": [
{
"database": "promosmart_joann_development_new_schema",
"dialect": "PostgreSQL",
"name": "Joann-PromoSmart",
"password": "$48o0ty9@51^=8K;U~@[;NSL9+1U|r",
"port": 5432,
"server": "35.209.214.188",
"username": "joan_prod_user"
}
],
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"sync.forceUpload": false,
"sync.gist": "",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.zoomLevel": 1,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "ayu",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
"workbench.settings.openDefaultSettings": true,
"zenMode.hideLineNumbers": false,
"zenMode.hideActivityBar": true,
"zenMode.hideStatusBar": true,
"zenMode.fullScreen": true,
"zenMode.centerLayout": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment