repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.6.9 hooks: - id: ruff name: Ruff (lint & fix) args: ["--fix", "--exit-non-zero-on-fix", "--force-exclude"] files: "\\.(py|pyi)$" exclude: "^storefront/" - id: ruff-format name: Ruff (format) files: "\\.(py|pyi)$" exclude: "^storefront/" ci: autofix_commit_msg: "chore(pre-commit): auto-fix issues" autofix_prs: true autoupdate_commit_msg: "chore(pre-commit): autoupdate hooks"