Skip to content

Commit 7de3c3d

Browse files
committed
Fix JSON syntax in tasks.json by adding missing comma and problemMatcher
1 parent 0b7d087 commit 7de3c3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.vscode/tasks.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
{
77
"label": "Docs: Serve (development)",
88
"type": "shell",
9-
"command": "uv run mkdocs serve"
9+
"command": "uv run mkdocs serve",
10+
"problemMatcher": []
1011
},
1112
{
1213
"label": "Docs: Build",
1314
"type": "shell",
1415
"command": "uv run mkdocs build --clean"
15-
},
16+
}
1617
]
1718
}

0 commit comments

Comments
 (0)