NMEA: bug fix of waypoint fields of RMB, addressing issue #28
[marnav.git] / .clang-format
blob5a8eddaf482d76410652043dd5cc7e0cb63845ab
2 # this configuration requires clang-format 3.8 or higher
5 BasedOnStyle: Webkit
7 # language
8 Language: Cpp
9 Standard: Cpp11
10 Cpp11BracedListStyle: true
12 # braces and indentation
13 BreakBeforeBraces: Linux
14 UseTab: Always
15 TabWidth: 4
16 IndentWidth: 4
17 IndentCaseLabels: true
18 NamespaceIndentation: None
20 # pointer alignment
21 DerivePointerAlignment: false
22 PointerAlignment: Middle
24 # misc
25 ColumnLimit: 96
26 MaxEmptyLinesToKeep: 1
27 AlignEscapedNewlinesLeft: true
28 AllowShortFunctionsOnASingleLine: Inline
29 SortIncludes: false