diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..2f7e218 --- /dev/null +++ b/.clang-format @@ -0,0 +1,17 @@ +--- +AccessModifierOffset: 0 +AlignConsecutiveAssignments: true +AllowShortIfStatementsOnASingleLine: WithoutElse +AllowShortLoopsOnASingleLine: true +BasedOnStyle: LLVM +BreakBeforeBraces: Attach +ColumnLimit: 100 +IndentCaseLabels: true +IndentWidth: '4' +Language: Cpp +Standard: Cpp11 +TabWidth: '4' +UseTab: Always +... + +# vim: ft=yaml |