From: Dongju Chae Date: Fri, 6 Aug 2021 06:52:39 +0000 (+0900) Subject: [Clang/Format] Update column limit to 100 X-Git-Tag: submit/tizen/20220103.094045~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a6232d86ad1f9a703b08075040b33f6b1548ced;p=platform%2Fadaptation%2Fnpu%2Ftrix-engine.git [Clang/Format] Update column limit to 100 This patch updates column limit to 100. The original width 80 is too strict and does not provide readability in our cases. Signed-off-by: Dongju Chae --- diff --git a/.clang-format b/.clang-format index c118d2a..0760489 100644 --- a/.clang-format +++ b/.clang-format @@ -12,3 +12,4 @@ AlwaysBreakAfterReturnType: TopLevelDefinitions SpaceBeforeParens: Always SpaceAfterCStyleCast: true Cpp11BracedListStyle: true +ColumnLimit: 100