diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-04-11 02:35:08 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 02:35:08 +0900 |
commit | 3b27c3bc9a155315dd3b417edca16094571f5ff6 (patch) | |
tree | e2f45433d02897a1be5d5e7591baea9686d11902 /.clang-format | |
parent | 7cc509f54a759034fbff57fae64e142ad15cc097 (diff) | |
download | binaryen-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-format | 5 |
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 |