Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
chore(dev/vscode): custom presentation for tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Dec 27, 2024
1 parent 2bb8de8 commit bb5ae6a
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@
"label": "Restore Ruff venv",
"type": "shell",
"command": "uv",
"args": ["sync"]
"args": ["sync"],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"clear": false
},
"problemMatcher": ["$python"]
},
{
"label": "Run check-phat-nguoi",
Expand All @@ -16,6 +24,12 @@
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "dedicated"
},
"problemMatcher": ["$python"]
},
{
Expand All @@ -27,6 +41,13 @@
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "dedicated",
"clear": false
},
"problemMatcher": ["$python"]
}
]
Expand Down

0 comments on commit bb5ae6a

Please sign in to comment.