From 391954a67a1e17ff532727401b7c95ee769d529f Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Wed, 5 Feb 2020 00:26:14 +0100 Subject: [PATCH] .clang-format: Set column limit to 80 Right now, running clang-format or git clang-format will unwrap lines and make them longer than 80 chars, even if the developer inserted linebreaks manually. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index a055030a648..90a4b6da439 100644 --- a/.clang-format +++ b/.clang-format @@ -6,7 +6,7 @@ UseTab: Never # NOTE(2019-02-23, uklotzde) The column limit has been set to 0 # to avoid eagerly reformatting of the existing code base. This # may later be changed to 80-100 characters per line if desired. -ColumnLimit: 0 +ColumnLimit: 80 --- # Customize only those options that differ from the base style! # Dumping the options of the base style for comparison: