Skip to content

Commit 2191fd7

Browse files
committed
chore(dev): add vscode settings
1 parent 2735ca0 commit 2191fd7

File tree

7 files changed

+96
-1
lines changed

7 files changed

+96
-1
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,9 @@ mise.local.toml
210210
.ruff_cache/
211211

212212
# VSCode
213-
.vscode/
213+
.vscode/*
214+
!.vscode/settings.json
215+
!.vscode/tasks.json
216+
!.vscode/launch.json
217+
!.vscode/extensions.json
218+
!.vscode/*.code-snippets

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"charliermarsh.ruff"
4+
]
5+
}

agentstack.code-workspace

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "root",
5+
"path": "."
6+
},
7+
{
8+
"name": "agentstack-server",
9+
"path": "apps/agentstack-server"
10+
},
11+
{
12+
"name": "agentstack-sdk-py",
13+
"path": "apps/agentstack-sdk-py"
14+
},
15+
{
16+
"name": "agentstack-cli",
17+
"path": "apps/agentstack-cli"
18+
},
19+
{
20+
"name": "agent-chat",
21+
"path": "agents/chat"
22+
},
23+
{
24+
"name": "agent-form",
25+
"path": "agents/form"
26+
},
27+
{
28+
"name": "agent-rag",
29+
"path": "agents/rag"
30+
}
31+
],
32+
"settings": {
33+
"python.analysis.extraPaths": [
34+
"${workspaceFolder}/apps/agentstack-sdk-py/src"
35+
],
36+
"python.analysis.diagnosticMode": "workspace",
37+
"python.analysis.typeCheckingMode": "basic"
38+
}
39+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "workspace"
5+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "workspace",
5+
"python.testing.pytestArgs": [
6+
"tests"
7+
],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true
10+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "agentstack-server",
6+
"type": "debugpy",
7+
"request": "launch",
8+
"module": "uvicorn",
9+
"args": [
10+
"agentstack_server.application:app",
11+
"--host=0.0.0.0",
12+
"--port=18333",
13+
"--timeout-keep-alive=60",
14+
"--timeout-graceful-shutdown=2"
15+
],
16+
}
17+
]
18+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "workspace",
5+
"python.analysis.indexing": true,
6+
"python.analysis.autoImportUserSymbols": true,
7+
"python.analysis.autoImportCompletions": true,
8+
"python.testing.pytestArgs": [
9+
"tests"
10+
],
11+
"python.testing.unittestEnabled": false,
12+
"python.testing.pytestEnabled": true,
13+
}

0 commit comments

Comments
 (0)