Skip to content

Commit 48f2a42

Browse files
committed
Refactor task labels in tasks.json for consistency by removing "Run" prefix
1 parent 690bd57 commit 48f2a42

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.vscode/tasks.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "2.0.0",
55
"tasks": [
66
{
7-
"label": "🧽 Run Ruff Formatter",
7+
"label": "🧽 Ruff Formatter",
88
"command": "${command:python.interpreterPath}",
99
"args": [
1010
"-m",
@@ -29,7 +29,7 @@
2929
"type": "shell"
3030
},
3131
{
32-
"label": "🔦 Run Ruff Linter",
32+
"label": "🔦 Ruff Linter",
3333
"command": "${command:python.interpreterPath}",
3434
"args": [
3535
"-m",
@@ -55,7 +55,7 @@
5555
"type": "shell"
5656
},
5757
{
58-
"label": "🔦 Run Pylint",
58+
"label": "🔦 Pylint",
5959
"command": "${command:python.interpreterPath}",
6060
"args": [
6161
"-m",
@@ -149,7 +149,7 @@
149149
"type": "shell"
150150
},
151151
{
152-
"label": "🚀 Run pytest",
152+
"label": "🚀 Pytest",
153153
"command": "${command:python.interpreterPath}",
154154
"args": [
155155
"-m",
@@ -205,7 +205,7 @@
205205
"type": "shell"
206206
},
207207
{
208-
"label": "🧪 Run coverage tests",
208+
"label": "🧪 Coverage tests",
209209
"type": "shell",
210210
"command": "${command:python.interpreterPath}",
211211
"args": [
@@ -258,7 +258,7 @@
258258
"problemMatcher": [],
259259
"dependsOrder": "sequence",
260260
"dependsOn": [
261-
"🧪 Run coverage tests",
261+
"🧪 Coverage tests",
262262
],
263263
},
264264
{

0 commit comments

Comments
 (0)