tools: add .clang-format

Configuration for clang-format and related utilities.

Examples:

    clang-format -style=file <file>
    git clang-format -style=file <commit>
    git diff -U0 HEAD^ | clang-format-diff.py -i -p1 -style=file
This commit is contained in:
Felipe Morales
2015-01-20 09:52:05 -03:00
parent d30464264a
commit 6425627c3f
3 changed files with 20 additions and 0 deletions

12
src/.clang-format Normal file
View File

@@ -0,0 +1,12 @@
BasedOnStyle: llvm
Language: Cpp
ColumnLimit: 80
IndentWidth: 2
TabWidth: 2
UseTab: Never
IndentCaseLabels: true
BreakBeforeBraces: Linux
AlignEscapedNewlinesLeft: false
AllowShortFunctionsOnASingleLine: false
SpacesBeforeTrailingComments: 2
PenaltyReturnTypeOnItsOwnLine: 200