summaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2019-04-11 02:35:08 +0900
committerGitHub <noreply@github.com>2019-04-11 02:35:08 +0900
commit3b27c3bc9a155315dd3b417edca16094571f5ff6 (patch)
treee2f45433d02897a1be5d5e7591baea9686d11902 /.clang-format
parent7cc509f54a759034fbff57fae64e142ad15cc097 (diff)
downloadbinaryen-3b27c3bc9a155315dd3b417edca16094571f5ff6.tar.gz
binaryen-3b27c3bc9a155315dd3b417edca16094571f5ff6.tar.bz2
binaryen-3b27c3bc9a155315dd3b417edca16094571f5ff6.zip
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.
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format5
1 files changed, 3 insertions, 2 deletions
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