Update max-line-length to 88 characters

This commit updates the max-line-length of the project to
88 characters to reflect Black formatter default config.

Test Plan:
PASS: tox -e pylint,pep8

Story: 2011149
Task: 50313

Change-Id: Ib9b0265b54f7924417315e764e7dcdd90bcce672
Signed-off-by: Hugo Brito <hugo.brito@windriver.com>
This commit is contained in:
Hugo Brito 2024-06-11 10:54:45 -03:00
parent 0e7b4f5d93
commit 5e468d34d5
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ ignore-docstrings=yes
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=85
max-line-length=88
# Maximum number of lines in a module
max-module-lines=1000

View File

@ -42,7 +42,7 @@ commands = flake8
# W605 invalid escape sequence
# E203 and W503 are not compatible with Black formatter
show-source = True
max-line-length = 85
max-line-length = 88
ignore = E203, W503, W504, W605
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build