Skip to content

Commit 328947f

Browse files
committed
Setting up VSCope workspace.
1 parent a2218f5 commit 328947f

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.vscode/extensions.json

+11
Original file line numberDiff line numberDiff line change
@@ -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

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"basedpyright.analysis.diagnosticMode": "workspace",
3+
"files.exclude": {
4+
"**/.venv/": true,
5+
"**/venv/": true,
6+
"**/__pycache__/": true,
7+
"**/.ruff_cache/": true,
8+
".ruff_cache/**/*": true,
9+
".venv/**/*": true
10+
}
11+
}

0 commit comments

Comments
 (0)