A pre-commit hook for psalm.
This adds support for running vimeo/psalm
as a pre-commit hook in your PHP project.
Add this to your .pre-commit-config.yaml
:
- repo: https://github.com/matchory/pre-commit-psalm
rev: v1.0.0
hooks:
- id: psalm
Or, to enable automatic fixing with Psalter:
- repo: https://github.com/matchory/pre-commit-psalm
rev: v1.0.0
hooks:
- id: psalm
args: [ "--alter" ]
MIT