---
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html#
# the "Visual Studio" style is similar to:
BasedOnStyle: LLVM
UseTab: Never
IndentWidth: 4
BreakBeforeBraces: Custom
BraceWrapping:
  AfterNamespace: true
  AfterClass: true
  AfterStruct: true
  AfterFunction: true
  BeforeLambdaBody: false
  AfterControlStatement: Always
  BeforeElse: true
  AfterCaseLabel: true
  BeforeWhile: false
  BeforeCatch: true
  AfterEnum: true
  AfterUnion: true
  AfterExternBlock: true
  SplitEmptyNamespace: false
  SplitEmptyFunction: false
  SplitEmptyRecord: false
  IndentBraces: false
AccessModifierOffset: -4
SortIncludes: false
ColumnLimit: 0
...