We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87025a0 commit e141554Copy full SHA for e141554
.vscode/tasks.json
@@ -4,7 +4,30 @@
4
"version": "2.0.0",
5
"tasks": [
6
{
7
- "label": "Run Ruff",
+ "label": "Run Ruff Formatter",
8
+ "command": "ruff",
9
+ "args": [
10
+ "format"
11
+ ],
12
+ "options": {
13
+ "cwd": "${workspaceFolder}"
14
+ },
15
+ "group": {
16
+ "kind": "build",
17
+ "isDefault": false
18
19
+ "presentation": {
20
+ "clear": true,
21
+ "echo": true,
22
+ "focus": false,
23
+ "panel": "dedicated",
24
+ "reveal": "always",
25
+ "showReuseMessage": true
26
27
+ "type": "shell"
28
29
+ {
30
+ "label": "Run Ruff Linter",
31
"command": "ruff",
32
"args": [
33
"check",
0 commit comments