--- name: Lint Python on Save description: Run ruff linter when any Python file is saved version: "1.0" trigger: type: onSave filePattern: "**/*.py" --- When any Python file is saved: 1. Run `ruff check {filePath}` on the saved file 2. If there are fixable issues, run `ruff check --fix {filePath}` to auto-fix 3. Report any remaining issues concisely