From 3b27c3bc9a155315dd3b417edca16094571f5ff6 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Thu, 11 Apr 2019 02:35:08 +0900 Subject: Modify .clang-format (#1986) Modifies .clang-format to reflect discussions in #1981. This basically removes the custom 100 cols line length and allows one-line ifs/cases/blocks. There is one more similar option in clang-format, `AllowShortLoopsOnASingleLine`, but I couldn't find any one-line for loop in our codebase, so I think we don't use it. --- .clang-format | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.clang-format') diff --git a/.clang-format b/.clang-format index ae26db077..1a3fe518f 100644 --- a/.clang-format +++ b/.clang-format @@ -1,8 +1,9 @@ BasedOnStyle: LLVM PointerAlignment: Left IndentCaseLabels: true -ColumnLimit: 100 ContinuationIndentWidth: 2 ConstructorInitializerIndentWidth: 2 -AlignAfterOpenBracket: DontAlign SpaceAfterTemplateKeyword: false +AllowShortCaseLabelsOnASingleLine: true +AllowShortIfStatementsOnASingleLine: true +AllowShortBlocksOnASingleLine: true -- cgit v1.2.3