editorconfig: bump max line length to 100 chars

Increase the maximum line length to 100 characters, following the
kernel policy change [1]. It's still a good idea to split long
lines, but not if that degrades readability and is only a few
characters over the limit.

[1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=bdc48fa11e46f867ea4d75fa59ee87a7f48be144

Signed-off-by: Simon Ser <contact@emersion.fr>
This commit is contained in:
Simon Ser 2023-04-14 13:31:42 +02:00
parent 8781d1d7a9
commit 49af17a3e6

View file

@ -7,7 +7,7 @@ trim_trailing_whitespace = true
insert_final_newline = true insert_final_newline = true
indent_style = tab indent_style = tab
indent_size = 8 indent_size = 8
max_line_length = 80 max_line_length = 100
[*.py] [*.py]
indent_style = space indent_style = space