diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 96a1f26..51f2134 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -58,7 +58,7 @@ repos: rev: v0.0.14 hooks: - id: rstfmt - exclude: 'cli/.*' # Because we use argparse + exclude: '(cli|schemas)/.*' # Because we use argparse and pydantic sphinx directives - repo: https://github.com/tox-dev/pyproject-fmt rev: "v2.5.0" hooks: @@ -73,6 +73,6 @@ repos: - --check-overridden # Check overridden methods - --check-protected # Check protected methods - --check-class # Check class docstrings - - --disable=E113 # Disable empty docstrings + - --disable=SIG101,SIG102 # Disable empty docstrings ci: autoupdate_schedule: monthly