docs/projects/regal/pre-commit-hooks.md
Pre-Commit is a framework for managing and maintaining multi-language pre-commit hooks. This allows running Regal automatically whenever (and as the name implied before) a Rego file is about to be committed.
To use Regal with pre-commit, add this to your .pre-commit-config.yaml
- repo: https://github.com/open-policy-agent/regal
rev: v0.7.0 # Use the ref you want to point at
hooks:
- id: regal-lint
# - id: ...
regal-lintRuns Regal against all staged .rego files, aborting the commit if any fail.
go build chain is installed and available on $PATHGOPATHregal-lint-use-pathRuns Regal against all staged .rego files, aborting the commit if any fail.
regal package is already installed and available on $PATH.regal-downloadRuns Regal against all staged .rego files, aborting the commit if any fail.
regal binary from GitHub.regal-fixRuns regal fix against all staged .rego files, applying any
auto-fixable rule violations in place. Use this alongside regal-lint when you
want the hook to repair style-level issues automatically rather than asking the
contributor to re-run regal fix themselves.
go build chain is installed and available on $PATHGOPATHregal-fix-use-pathSame as regal-fix, but uses the regal binary already on $PATH.
regal package is already installed and available on $PATH.regal-fix-downloadSame as regal-fix, but downloads the latest regal binary from GitHub instead of building or relying on $PATH.
regal binary from GitHub.