Skip to content

Commit

Permalink
Set Pylint's and Black's line length to 88 chars (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
isudak authored Apr 18, 2024
1 parent ea237f0 commit 9d0f1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ 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
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
Expand Down

0 comments on commit 9d0f1da

Please sign in to comment.