commit | 49af17a3e653b6e07a0f508da0c83c4ee3cd9077 | [log] [tgz] |
---|---|---|
author | Simon Ser <[email protected]> | Fri Apr 14 13:31:42 2023 +0200 |
committer | Simon Ser <[email protected]> | Thu May 11 08:58:10 2023 +0000 |
tree | 10a10841b5f685eece1ae1e08f126edaaf948d33 | |
parent | 8781d1d7a97fd04fd3ae5b543d8272bc3a7df993 [diff] |
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 <[email protected]>
diff --git a/.editorconfig b/.editorconfig index 272ca18..6916c80 100644 --- a/.editorconfig +++ b/.editorconfig
@@ -7,7 +7,7 @@ insert_final_newline = true indent_style = tab indent_size = 8 -max_line_length = 80 +max_line_length = 100 [*.py] indent_style = space