diff options
author | willakat <willakat@users.noreply.github.com> | 2017-01-14 19:40:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-14 19:40:02 +0100 |
commit | 4c06a100046db6f8756e245c351eb9420a272f93 (patch) | |
tree | 51350f88fb37fea4c94c5787d0df32a3eb102ab1 /.clang-format | |
parent | dc361fd9df4a1b40fd4df0f7442944d51bca7760 (diff) | |
parent | 0001b00706bfdaa185a9fd6823ff947c14aa3b5f (diff) | |
download | sway-4c06a100046db6f8756e245c351eb9420a272f93.tar.xz |
Merge branch 'master' into master
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format index 83d50545..5818da3c 100644 --- a/.clang-format +++ b/.clang-format @@ -1,7 +1,16 @@ BasedOnStyle: LLVM -IndentWidth: 8 +IndentWidth: 4 +TabWidth: 4 UseTab: Always BreakBeforeBraces: Attach AllowShortIfStatementsOnASingleLine: false IndentCaseLabels: false -ColumnLimit: 0 +SortIncludes: false +ColumnLimit: 80 +AlignAfterOpenBracket: DontAlign +BinPackParameters: false +BinPackArguments: false +ContinuationIndentWidth: 8 +AllowAllParametersOfDeclarationOnNextLine: false +AllowShortLoopsOnASingleLine: true +ReflowComments: false |