Skip to content

Instantly share code, notes, and snippets.

@julianobarbosa
Last active August 14, 2019 15:12
Show Gist options
  • Save julianobarbosa/cea592f4f361cf89efefbba9921d7eba to your computer and use it in GitHub Desktop.
Save julianobarbosa/cea592f4f361cf89efefbba9921d7eba to your computer and use it in GitHub Desktop.
vscode python settings
{
"shellLauncher.shells.windows": [
{
"shell": "C:\\Windows\\System32\\cmd.exe",
"label": "cmd"
},
{
"shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"label": "PowerShell 5.1"
},
{
"shell": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"label": "PowerShell 6.2"
},
{
"shell": "C:\\Program Files\\Git\\bin\\bash.exe",
"label": "Git bash"
},
{
"shell": "C:\\Windows\\System32\\bash.exe",
"label": "WSL Bash"
}
],
"python.pythonPath": "${workspaceFolder}\\.env.ps1\\Scripts\\python.exe",
"python.venvPath": "~\\.virtualenvs",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "~\\.virtualenvs\\tools3\\Scripts\\flake8",
"python.linting.pep8Path": "~\\.virtualenvs\\tools3\\Scripts\\pep8",
"python.formatting.autopep8Path": "~\\.virtualenvs\\tools3\\Scripts\\autopep8",
"python.linting.pep8Enabled": true,
"python.linting.pep8Args": [
"--ignore=E501"
],
"python.linting.pylintEnabled": false,
"python.linting.pylintPath": "pylint",
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django"
],
"code-runner.executorMap": {
"python": "$pythonPath -u $fullFilneName",
},
"code-runner.clearPreviousOutput": true,
"code-runner.showExecutionMessage": false,
"code-runner.ignoreSelection": true,
"code-runner.saveFileBeforeRun": true,
"[plaintext]": {
"editor.quickSuggestions": false
},
"editor.formatOnSave": true,
"editor.fontFamily": "Source Code Pro",
"editor.fontSize": 20,
"editor.quickSuggestionsDelay": 100,
"debug.console.fontFamily": "Source Code Pro",
"debug.console.fontSize": 20,
"terminal.integrated.fontFamily": "Source Code Pro",
"terminal.integrated.fontSize": 20,
"zenMode.centerLayout": false,
"zenMode.fullScreen": false,
"zenMode.hideLineNumbers": false,
"zenMode.hideTabs": false,
"editor.minimap.enabled": false,
"workbench.settings.openDefaultSettings": true,
"workbench.settings.editor": "json",
"workbench.statusBar.visible": true,
"workbench.colorTheme": "Material Theme Darker High Contrast",
"workbench.iconTheme": "vscode-icons",
"files.exclude": {
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/.vscode": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/env": true,
"**/.env.ps1": true,
"**/.env.wsl": true,
"**/__pycache__": true,
},
"sqltools.connections": [
{
"database": "{$workspaceFolder\\db.sqlite3",
"dialect": "SQLite",
"name": "SQLite"
}
],
"git.ignoreLimitWarning": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"powershell.powerShellExePath": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"prettier.arrayExpand": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment