From cfba4c634497949d490fb8a72f457ee5c809de09 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 20 Jan 2022 15:09:15 +0100 Subject: [PATCH] editorconfig: set max_line_length See [1]. CONTRIBUTING.md says: > Try to keep your lines under 80 columns, but you can go up to 100 if it > improves readability. [1]: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index f392d812..9dcb30d7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,7 @@ charset = utf-8 trim_trailing_whitespace = true indent_style = tab indent_size = 4 +max_line_length = 80 [*.xml] indent_style = space