From 925e6fad8d86f9f76ee73a2aac2a3f7271f9edfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Mon, 4 Sep 2023 21:41:55 +0200 Subject: [PATCH] Set max line length in `.editorconfig` to 100 It is enforced by CI, but it wasn't set in the config. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index cb3312517..443c4c284 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,6 +3,7 @@ root = true [src/*] end_of_line = lf insert_final_newline = true +max_line_length = 100 [ci/*.sh] indent_style = space