From 65241d7751603a96c7a0ef432c3011a1169223b0 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Fri, 25 Jun 2021 07:47:54 -0500 Subject: [PATCH] Add interrogate to pre-commit-config --- .pre-commit-config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0e58ab5..f9cf0a8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,3 +39,11 @@ repos: hooks: - id: mypy exclude: tests/ + - repo: https://github.com/econchick/interrogate + rev: '1.2.0' + hooks: + - id: interrogate + description: check for docstring coverage + entry: interrogate -f 100 -iIvv + types: [python] + exclude: docs