From 61797a8f33fec43aeefb9499a8c42c5f794d3791 Mon Sep 17 00:00:00 2001 From: shpaass Date: Sun, 15 Sep 2024 23:00:55 +0200 Subject: [PATCH] style-change: update the recommended line wrap from 120 to 190 chars The reason for the change is that this codebase has many functions with a lot of parameters and inheritances. Wrapping these functions at 120 characters makes them less readable. The hit is so noticeable that you really want to make lines longer. --- Docs/CodeStyle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/CodeStyle.md b/Docs/CodeStyle.md index 8a5ae0eb..bd6dac74 100644 --- a/Docs/CodeStyle.md +++ b/Docs/CodeStyle.md @@ -18,7 +18,7 @@ The main idea is to keep the code maintainable and readable. ### Code * In the programmers' haven, there is always a free spot for those who write tests. -* Please try to keep the lines shorter than 120 characters. It simplifies the review of the changes on popular monitors. +* Please try to keep the lines shorter than 190 characters so they fit on most monitors. * If you add a TODO, then please describe the details in the commit message, or ideally in a github issue. That increases the chances of the TODOs being addressed. #### Difference with C# conventions