Posts tagged pre-commit

Updated pre-commit template (mypy compatible and default Python specified)

The following updates have been made to the pre-commit template introduced previously.

Read more ...


Migrating from poethepoet to doit in a Python development environment and best practices

In my Python project using Poetry, I used poethepoet to manage tasks, but I decided to migrate to doit for the following reasons.

Read more ...


Automatically update pre-commit hooks with GitHub Actions

We will introduce a mechanism to automatically execute pre-commit autoupdate periodically and create a hook version update PR via GitHub Actions.

Read more ...


Pre-commit hook configuration exhaustive template

In this article, we will cover a wide range of pre-commit hooks that can be automatically executed before a Git commit, and organize them as configuration examples (templates). We assume that you will use it to “put everything in first and then delete what is unnecessary.”

Read more ...


pre-commit implementation notes

In this article, we will explain how to introduce and utilize pre-commit, a tool that automatically formats and checks code and documents before committing to Git.

Read more ...