Browse Source

feat(auto-import): Enable default vscode auto-import for Sentry BE (#74197)

This PR turns on the `python.analysis.autoImportCompletions` setting in
`.vscode/settings.json`, enabling auto-import functionality for Python
files in Sentry.
Michael Sun 8 months ago
parent
commit
597d25951d
1 changed files with 4 additions and 1 deletions
  1. 4 1
      .vscode/settings.json

+ 4 - 1
.vscode/settings.json

@@ -102,5 +102,8 @@
   "python.testing.pytestEnabled": true,
   "python.testing.unittestEnabled": false,
   "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
-  "python.testing.pytestArgs": ["tests"]
+  "python.testing.pytestArgs": [
+    "tests"
+  ],
+  "python.analysis.autoImportCompletions": true
 }