python/.editorconfig: note max_line_length

This commit is contained in:
Aminda Suomalainen 2023-05-18 10:30:33 +03:00
parent 857b9b4a09
commit f7b8a40b28
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -4,3 +4,6 @@ root = false
# https://peps.python.org/pep-0008/#indentation # https://peps.python.org/pep-0008/#indentation
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
#max_line_length = 79
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
max_line_length = 88