Skip to content

Commit 019d56d

Browse files
committed
Add new combined Ruff task in tasks.json
1 parent 0a26e3f commit 019d56d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
],
1616
"options": {
1717
"cwd": "${workspaceFolder}",
18+
"statusbar": {
19+
"hide": true,
20+
},
1821
},
1922
"group": {
2023
"kind": "build",
@@ -43,6 +46,9 @@
4346
],
4447
"options": {
4548
"cwd": "${workspaceFolder}",
49+
"statusbar": {
50+
"hide": true,
51+
},
4652
},
4753
"group": {
4854
"kind": "build",
@@ -58,6 +64,27 @@
5864
},
5965
"type": "shell",
6066
},
67+
{
68+
"label": "🧽🔦 Ruff",
69+
"dependsOrder": "sequence",
70+
"dependsOn": [
71+
"🧽 Ruff Formatter",
72+
"🔦 Ruff Linter",
73+
],
74+
"group": {
75+
"kind": "build",
76+
"isDefault": false,
77+
},
78+
"presentation": {
79+
"clear": true,
80+
"echo": true,
81+
"focus": false,
82+
"panel": "dedicated",
83+
"reveal": "always",
84+
"showReuseMessage": true,
85+
},
86+
"type": "shell",
87+
},
6188
{
6289
"label": "🔦 Pylint",
6390
"command": "${command:python.interpreterPath}",

0 commit comments

Comments
 (0)