From 8fa589a132bf6358d0a576c702acf5151752a7bf Mon Sep 17 00:00:00 2001 From: Keith Bowes Date: Fri, 9 Dec 2022 18:27:06 -0500 Subject: [PATCH] Relax 80 column limit 80 cols is a bit short. Linux uses a soft 100 limit, let's do the same. --- .editorconfig | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index ba4f2c4..516f2a0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,7 +14,7 @@ block_comment_start = /* block_comment_end = */ curly_bracket_next_line = false -max_line_length = 80 +max_line_length = 100 spaces_around_brackets = outside spaces_around_operators = true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index edd223a..bddb657 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -136,7 +136,7 @@ Try to break the line in the place which you think is the most appropriate. ### Line Length -Try to keep your lines under 80 columns, but you can go up to 100 if it +Try to keep your lines under 100 columns, but you can break this rule if it improves readability. Don't break lines indiscriminately, try to find nice breaking points so your code is easy to read.