Skip to content
Snippets Groups Projects
Select Git revision
3 results

.clang-format

Blame
  • .clang-format 411 B
    ---
    BasedOnStyle: Mozilla
    UseTab: Always
    ---
    Language: Cpp
    Standard: Latest
    
    IndentWidth: 8
    
    IndentCaseLabels: false
    NamespaceIndentation: All
    
    ColumnLimit: 120
    BreakBeforeBraces: Linux
    BreakInheritanceList: BeforeComma
    AlwaysBreakAfterReturnType: AllDefinitions
    
    AllowShortCaseLabelsOnASingleLine: true
    
    AlignConsecutiveMacros: true
    AllowShortEnumsOnASingleLine: false
    BreakBeforeConceptDeclarations: true
    ...