Skip to content
Snippets Groups Projects
.clang-format 854 B
Newer Older
  • Learn to ignore specific revisions
  • AlignConsecutiveAssignments: true
    
    AlignConsecutiveDeclarations: true
    AlignEscapedNewlinesLeft: true
    AlignOperands:   true
    AlignTrailingComments: true
    AllowShortBlocksOnASingleLine: false
    AllowShortCaseLabelsOnASingleLine: false
    
    AllowShortFunctionsOnASingleLine: false
    
    AllowShortIfStatementsOnASingleLine: false
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakBeforeMultilineStrings: true
    AlwaysBreakTemplateDeclarations: true
    
    BreakBeforeBraces: Allman
    ColumnLimit:     160
    ConstructorInitializerAllOnOneLineOrOnePerLine: true
    
    ConstructorInitializerIndentWidth: 2
    
    Cpp11BracedListStyle: true
    
    DerivePointerAlignment: false
    IndentWidth:     2
    
    Language:        Cpp
    
    MaxEmptyLinesToKeep: 2
    NamespaceIndentation: None
    PointerAlignment: Left
    
    SortIncludes: false
    Standard:        Cpp11