1ColumnLimit: 100 2 3UseTab: Never 4IndentWidth: 4 5AccessModifierOffset: -4 6NamespaceIndentation: Inner 7 8BreakBeforeBraces: Custom 9BraceWrapping: 10 AfterNamespace: true 11 AfterEnum: true 12 AfterStruct: true 13 AfterClass: true 14 SplitEmptyFunction: false 15 AfterControlStatement: true 16 AfterFunction: true 17 AfterUnion: true 18 BeforeElse: true 19 20 21AlwaysBreakTemplateDeclarations: true 22BreakConstructorInitializersBeforeComma: true 23ConstructorInitializerAllOnOneLineOrOnePerLine: true 24AllowShortBlocksOnASingleLine: true 25AllowShortFunctionsOnASingleLine: All 26AllowShortIfStatementsOnASingleLine: true 27AllowShortLoopsOnASingleLine: true 28 29PointerAlignment: Left 30AlignConsecutiveAssignments: false 31AlignTrailingComments: true 32 33SpaceAfterCStyleCast: true 34CommentPragmas: '^ NO-FORMAT:' 35