.clang-format 570 B raw
1
IndentWidth: 4
2
ColumnLimit: 80
3
UseTab: Never
4
AllowShortBlocksOnASingleLine: Always  # or use 'Empty' for only empty blocks
5
AllowShortFunctionsOnASingleLine: Empty
6
AlignConsecutiveMacros: AcrossComments
7
AlignAfterOpenBracket: BlockIndent
8
AlignConsecutiveBitFields: AcrossEmptyLinesAndComments
9
AlignConsecutiveDeclarations:
10
  Enabled: true
11
AlignConsecutiveAssignments:
12
  Enabled: true
13
  AlignCompound: true
14
  PadOperators: true
15
BinPackParameters: false
16
BinPackArguments: false
17
BreakAfterReturnType: Automatic
18
PenaltyReturnTypeOnItsOwnLine: 999
19
Cpp11BracedListStyle: false