Skip to content

Commit e144811

Browse files
committed
Refactor task labels for consistency and clarity in tasks.json
1 parent 1728379 commit e144811

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.vscode/tasks.json

Lines changed: 10 additions & 8 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",
@@ -256,7 +256,7 @@
256256
}
257257
},
258258
{
259-
"label": "📦 Upgrade PlotPyStack",
259+
"label": "Upgrade PythonQwt/guidata",
260260
"type": "shell",
261261
"command": "${command:python.interpreterPath}",
262262
"args": [
@@ -267,13 +267,15 @@
267267
"pip",
268268
"PythonQwt",
269269
"guidata",
270-
"PlotPy",
271270
],
272271
"options": {
273272
"cwd": "scripts",
274273
"env": {
275274
"PYTHON": "${command:python.interpreterPath}",
276275
"UNATTENDED": "1"
276+
},
277+
"statusbar": {
278+
"hide": true
277279
}
278280
},
279281
"group": {
@@ -435,7 +437,7 @@
435437
]
436438
},
437439
{
438-
"label": "🧪 Run coverage tests",
440+
"label": "🧪 Coverage tests",
439441
"type": "shell",
440442
"command": "${command:python.interpreterPath}",
441443
"args": [
@@ -488,7 +490,7 @@
488490
"problemMatcher": [],
489491
"dependsOrder": "sequence",
490492
"dependsOn": [
491-
"🧪 Run coverage tests",
493+
"🧪 Coverage tests",
492494
],
493495
},
494496
]

0 commit comments

Comments
 (0)