We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0df08ab commit 0ce8693Copy full SHA for 0ce8693
2 files changed
.vscode/tasks.json
@@ -151,31 +151,26 @@
151
},
152
{
153
"label": "Run Ruff",
154
- "type": "shell",
155
- "command": "cmd",
+ "command": "ruff",
156
"args": [
157
- "/c",
158
- "run_ruff.bat",
+ "check",
159
],
160
"options": {
161
- "cwd": "scripts",
162
- "env": {
163
- "PYTHON": "${command:python.interpreterPath}",
164
- "UNATTENDED": "1"
165
- }
+ "cwd": "${workspaceFolder}"
166
167
"group": {
168
"kind": "build",
169
- "isDefault": true
+ "isDefault": false
170
171
"presentation": {
+ "clear": true,
172
"echo": true,
173
- "reveal": "always",
174
"focus": false,
175
"panel": "dedicated",
+ "reveal": "always",
176
"showReuseMessage": true,
177
- "clear": true
178
+ },
+ "type": "shell"
179
180
181
"label": "Clean Up",
scripts/run_ruff.bat
0 commit comments