From c475a676906d1f0afa8359cffc1307913e2ad512 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 8 Sep 2022 16:34:03 +0100 Subject: [PATCH] add hooky config to pyproject.toml --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 694e320..bfe8c57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,6 +58,11 @@ filterwarnings = [ 'ignore:path is deprecated.*:DeprecationWarning:certifi', ] +# configuring https://github.com/pydantic/hooky +[tool.hooky] +reviewers = ['samuelcolvin', 'PrettyWood', 'hramezani'] +require_change_file = false + [tool.flake8] max_line_length = 120 max_complexity = 14 @@ -70,6 +75,9 @@ per_file_ignores = [ 'docs/examples/types_constrained.py:F722', ] +[tool.ruff] +line-length = 120 + [tool.coverage.run] source = ['pydantic'] branch = true