From f6bee54a157a77425db47d87bc2e65c584e5b45d Mon Sep 17 00:00:00 2001 From: Jairo Llopis <973709+yajo@users.noreply.github.com> Date: Sun, 8 Jan 2023 18:02:33 +0000 Subject: [PATCH] fix: do not pass file names with pre-commit (#610) Co-authored-by: Sambhav Kothari --- .pre-commit-hooks.yaml | 1 + docs/release_notes.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index cb55ee45..3009bf52 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -4,3 +4,4 @@ entry: pydocstyle language: python types: [python] + pass_file_names: false diff --git a/docs/release_notes.rst b/docs/release_notes.rst index f0f6f691..bb4595ec 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -11,6 +11,7 @@ Bug Fixes * Fix decorator parsing for async function. Resolves some false positives with async functions and ``overload``. (#577) +* Obey match rules in pre-commit usage (#610). 6.2.2 - January 3rd, 2023 ---------------------------