fix: update pre-commit task label and command to run only staged files

This commit is contained in:
GitHub Actions
2025-11-30 21:23:42 +00:00
parent d789ee85e5
commit 16875bea3d

4
.vscode/tasks.json vendored
View File

@@ -8,9 +8,9 @@
"group": "test"
},
{
"label": "Run Pre-commit (All Files)",
"label": "Run Pre-commit (Staged Files)",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/pre-commit run --all-files",
"command": "${workspaceFolder}/.venv/bin/pre-commit run",
"group": "test"
},
// === MANUAL LINT/SCAN TASKS ===