Relax line length when linting (increased checker)

This commit is contained in:
Julian Stirling 2025-04-14 09:25:01 +01:00
parent 7f46bc2d9b
commit bd411db5ea

View file

@ -35,3 +35,8 @@ select = [
# also "D" but this even warns about docstring punctuation. Perhaps a step too # also "D" but this even warns about docstring punctuation. Perhaps a step too
# far? # far?
] ]
# Line length is set to 88 for ruff. This is what the formatter aims for
# some lines are not formatted to 88 if the formatter can't easily break
# them. Allow up to 99 beofre throwing a long line error
line-length = 99