Description
This is only a DX-related feature request. Basically, instead of running pre-commit checks in CI and failing hard, pre-commit is able to apply auto-fixes and push them to the PR directly.
Example affected run: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/actions/runs/15515354310/job/43681543491
It's made by the same person who made pre-commit and is generally well-made. It's free for open source repos:
pre-commit.ci will always be free for open source repositories
One less annoyance to worry about when making contributions 😃. This contribution check could then be removed:
Code is formatted and linted (run pre-commit run --all-files)
Since it will always be done by the CI.
PS. It also requires no additional configuration, just plug-and-play!