SeaTalk: message type 59 added.
[marnav.git] / .clang-format
blob709547ee0f817d7e80a575071fea6bd221e50fc1
1 BasedOnStyle: Webkit
3 # language
4 Language: Cpp
5 Standard: Cpp11
6 Cpp11BracedListStyle: true
8 # braces and indentation
9 BreakBeforeBraces: Linux
10 UseTab: Always
11 TabWidth: 4
12 IndentWidth: 4
13 IndentCaseLabels: true
14 NamespaceIndentation: None
15 #AllowShortFunctionsOnASingleLine: None
17 # pointer alignment
18 DerivePointerAlignment: false
19 PointerAlignment: Middle
21 # misc
22 ColumnLimit: 96
23 MaxEmptyLinesToKeep: 1
24 AlignEscapedNewlinesLeft: true