aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Lohnau <alexander.lohnau@gmx.de>2020-12-30 22:52:23 +0100
committerAlexander Lohnau <alexander.lohnau@gmx.de>2020-12-31 17:14:39 +0000
commitc7bd5a9b2b1b645574320e04e6db5a2cfeca4bf3 (patch)
tree5e8c1ef0e965f24acf6ae73370904ba4c41af242
parent6644ad8fe64f0df3ea2f1d3106640ed0faf0d25d (diff)
downloadextra-cmake-modules-c7bd5a9b2b1b645574320e04e6db5a2cfeca4bf3.tar.gz
extra-cmake-modules-c7bd5a9b2b1b645574320e04e6db5a2cfeca4bf3.tar.bz2
[clang-format] Set max column limit to 160
Before this value was 240, which can result in excessively long lines.
-rw-r--r--kde-modules/clang-format.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/kde-modules/clang-format.cmake b/kde-modules/clang-format.cmake
index c3e43485..c7c99abd 100644
--- a/kde-modules/clang-format.cmake
+++ b/kde-modules/clang-format.cmake
@@ -17,8 +17,8 @@ Standard: Cpp11
# 4 spaces indent
TabWidth: 4
-# 3 * 80 wide lines
-ColumnLimit: 240
+# 2 * 80 wide lines
+ColumnLimit: 160
# sort includes inside line separated groups
SortIncludes: true