From d69a5c5c3a8baa52554ebbb0160ce3e36faef7c6 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 9 Feb 2023 13:37:07 +0400 Subject: [PATCH] Fix pre-commit hooks --- docs/contributing/lint.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/lint.md b/docs/contributing/lint.md index c557f9b4..dd2e5a7b 100644 --- a/docs/contributing/lint.md +++ b/docs/contributing/lint.md @@ -8,7 +8,7 @@ To integrate and enforce this process in the project lifecycle, we are using **g ### Pre-commit hook installation -*pre-commit* is a Python package that needs to be installed. +_pre-commit_ is a Python package that needs to be installed. To achieve this, use the generic task to install all Python development dependencies. ```sh @@ -26,7 +26,7 @@ make pre-commit-install ### Run -Now, *pre-commit* (and so configured hooks) will run automatically on `git commit` on each changed file. +Now, _pre-commit_ (and so configured hooks) will run automatically on `git commit` on each changed file. However, it is also possible to trigger it against all files. ```{note}