From 63d62a6f31fde60934977e5910b8c5197a6b3a95 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Tue, 23 Apr 2024 15:58:20 -0600 Subject: [PATCH] Remove duplicate explanation of pre-commit --- .../.github/CONTRIBUTING.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/{{cookiecutter.project_name}}/.github/CONTRIBUTING.md b/{{cookiecutter.project_name}}/.github/CONTRIBUTING.md index 16e7a396..2dcfe7fa 100644 --- a/{{cookiecutter.project_name}}/.github/CONTRIBUTING.md +++ b/{{cookiecutter.project_name}}/.github/CONTRIBUTING.md @@ -55,7 +55,7 @@ py -m install -v -e .[dev] {%- endif %} -# Post setup +# Pre-commit You should prepare pre-commit, which will help you by checking that commits pass required checks: @@ -97,15 +97,3 @@ You can see a preview with: ```bash nox -s docs -- --serve ``` - -# Pre-commit - -This project uses pre-commit for all style checking. While you can run it with -nox, this is such an important tool that it deserves to be installed on its own. -Install pre-commit and run: - -```bash -pre-commit run -a -``` - -to check all files.