From 9d0f1da4576f07fc41ff1ecd84f189b1ef47633a Mon Sep 17 00:00:00 2001 From: Igor Sudak Date: Thu, 18 Apr 2024 21:00:07 +0200 Subject: [PATCH] Set Pylint's and Black's line length to 88 chars (#807) That is the Black's default value. See https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7eb7a7eaa..01d087d59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ profile = "black" split_on_trailing_comma = true [tool.black] -line-length = 120 +line-length = 88 skip-string-normalization = true # see https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style preview = true @@ -11,7 +11,7 @@ enable-unstable-feature = ["hug_parens_with_braces_and_square_brackets"] extend-exclude = 'alws/alembic' [tool.pylint] -max-line-length = 120 +max-line-length = 88 # Minimum line length for functions/classes that require docstrings docstring-min-length = 50