We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2218f5 commit 328947fCopy full SHA for 328947f
.vscode/extensions.json
@@ -0,0 +1,11 @@
1
+{
2
+ "recommendations": [
3
+ "detachhead.basedpyright",
4
+ "ms-python.python",
5
+ "Prisma.prisma",
6
+ "tamasfe.even-better-toml"
7
+ ],
8
+ "unwantedRecommendations": [
9
+ "ms-python.vscode-pylance"
10
+ ]
11
+}
.vscode/settings.json
+ "basedpyright.analysis.diagnosticMode": "workspace",
+ "files.exclude": {
+ "**/.venv/": true,
+ "**/venv/": true,
+ "**/__pycache__/": true,
+ "**/.ruff_cache/": true,
+ ".ruff_cache/**/*": true,
+ ".venv/**/*": true
+ }
0 commit comments