filyp / autocorrect

Spelling corrector in python
GNU Lesser General Public License v3.0
447 stars 79 forks source link

Automate code checks with `pre-commit` #14

Closed boidolr closed 3 years ago

boidolr commented 3 years ago

To ensure that the code stays clean commit hooks can be used. To manage them https://pre-commit.com/ is used to avoid developers needing to setup the hooks directly.

If so desired, other checks such as black can be added to the configuration as well.

filyp commented 3 years ago

Nice improvement, thanks!