-
Notifications
You must be signed in to change notification settings - Fork 32
Description
Hey,
Thanks for the useful tool! Using cog
as a pre-commit
hook would increase its usefulness as you could verify that all cog
code is run before committing. The config is as simple as I have implemented here: https://github.com/nialov/cog/blob/feat-add-as-pre-commit-hook/.pre-commit-hooks.yaml.
I have configured the implemented hook locally in a project as such:
- repo: https://github.com/nialov/cog
rev: 6d73562c5cb38753bd94414a6e7612b263bc278d
hooks:
- id: cog
files: "(docs_src/index.rst)"
However, what flags to use and what to put as the default is definitely an open question. In my example I have used the checksum (-c
) and inplace conversion (-r
) flags. These probably cannot be defaults as cog
can be used in numerous different ways.
Secondly, the command line cog
should not fail when ran with no files inputted. This does not have to be the default but should be enabled by e.g., a flag (--no-fail-on-no-filenames
or something more succinct).
I would not be surprised if multiple have not already implemented this functionality in their own projects/forks. A caveat in the implementation as a pre-commit
hook is that the Python
interpreter will not have access to any other packages other than cog
and the standard library of Python
so more advanced use cases are probably out of scope of the hook implementation.