1IndentCaseLabels: true
2BasedOnStyle: Google
3IndentWidth: 4
4Standard: Auto
5PointerBindsToType: false
6Language: Cpp
7SpacesBeforeTrailingComments: 2
8AccessModifierOffset: -1
9AlignEscapedNewlinesLeft: true
10AlwaysBreakAfterDefinitionReturnType: true
11AlwaysBreakBeforeMultilineStrings: false
12BreakConstructorInitializersBeforeComma: true
13# BreakBeforeBraces: Linux
14BreakBeforeBraces: Custom
15AccessModifierOffset: -4
16ConstructorInitializerAllOnOneLineOrOnePerLine: false
17AllowShortFunctionsOnASingleLine: false
18AllowShortIfStatementsOnASingleLine: false
19AllowShortLoopsOnASingleLine: false
20DerivePointerBinding: false
21BraceWrapping: {
22    AfterNamespace: 'false'
23    AfterClass: 'true'
24    BeforeElse: 'false'
25    AfterControlStatement: 'false'
26    AfterFunction: 'true'
27    BeforeCatch: 'false'
28}
29ColumnLimit: 80
30
31# Might need to comment this out if you don't have the latest clang installed
32FixNamespaceComments: true
33
34ReflowComments: false
35