---
Language: Cpp
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 100
PointerAlignment: Left
ReferenceAlignment: Left
DerivePointerAlignment: false
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: false
BreakBeforeBraces: Attach
IndentCaseLabels: false
SortIncludes: CaseInsensitive
IncludeBlocks: Regroup
IncludeCategories:
  # Local headers
  - Regex: '^".*'
    Priority: 1
  # System headers with angle brackets
  - Regex: '^<.*\.h>'
    Priority: 3
  # C++ standard library
  - Regex: '^<.*>'
    Priority: 2
...
