Skip to content

Instantly share code, notes, and snippets.

@thbaumann
Created May 23, 2021 18:31
Show Gist options
  • Save thbaumann/b3991cee3640d0f170ffd360d3a237b6 to your computer and use it in GitHub Desktop.
Save thbaumann/b3991cee3640d0f170ffd360d3a237b6 to your computer and use it in GitHub Desktop.
vscode_qgis_settings.json
{
"telemetry.enableTelemetry": false,
"python.defaultInterpreterPath": "C:\\OSGeo4W64\\apps\\Python37\\python.exe",
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"git.path": "Z:\\Programme\\Git\\bin\\git.exe",
"launch":
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Anfügen",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
]
}
]
},
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"python.linting.pylintArgs": [
"--extension-pkg-whitelist=PyQt5,qgis -–optimize-ast=y"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment