summaryrefslogtreecommitdiffstats
path: root/.clang-format
diff options
context:
space:
mode:
authorLibravatar willakat <willakat@users.noreply.github.com>2017-01-14 19:40:02 +0100
committerLibravatar GitHub <noreply@github.com>2017-01-14 19:40:02 +0100
commit4c06a100046db6f8756e245c351eb9420a272f93 (patch)
tree51350f88fb37fea4c94c5787d0df32a3eb102ab1 /.clang-format
parentMerge branch 'master' into master (diff)
parentMerge pull request #1048 from dkess/proper-output-wrapping (diff)
downloadsway-4c06a100046db6f8756e245c351eb9420a272f93.tar.gz
sway-4c06a100046db6f8756e245c351eb9420a272f93.tar.zst
sway-4c06a100046db6f8756e245c351eb9420a272f93.zip
Merge branch 'master' into master
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format13
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 @@
1BasedOnStyle: LLVM 1BasedOnStyle: LLVM
2IndentWidth: 8 2IndentWidth: 4
3TabWidth: 4
3UseTab: Always 4UseTab: Always
4BreakBeforeBraces: Attach 5BreakBeforeBraces: Attach
5AllowShortIfStatementsOnASingleLine: false 6AllowShortIfStatementsOnASingleLine: false
6IndentCaseLabels: false 7IndentCaseLabels: false
7ColumnLimit: 0 8SortIncludes: false
9ColumnLimit: 80
10AlignAfterOpenBracket: DontAlign
11BinPackParameters: false
12BinPackArguments: false
13ContinuationIndentWidth: 8
14AllowAllParametersOfDeclarationOnNextLine: false
15AllowShortLoopsOnASingleLine: true
16ReflowComments: false