Skip to content
Snippets Groups Projects
.clang-format 975 B
Newer Older
  • Learn to ignore specific revisions
  • Daniel Lyubomirov's avatar
    Daniel Lyubomirov committed
    ---
    Language: Cpp
    AlignAfterOpenBracket: AlwaysBreak
    AlignConsecutiveAssignments: false
    AlignConsecutiveDeclarations: false
    AlignConsecutiveMacros: true
    AlignOperands: false
    AlignTrailingComments: true
    AllowAllArgumentsOnNextLine: false
    AllowAllConstructorInitializersOnNextLine: false
    AllowAllParametersOfDeclarationOnNextLine: false
    AllowShortBlocksOnASingleLine: false
    AllowShortCaseLabelsOnASingleLine: false
    AllowShortFunctionsOnASingleLine: Empty
    AllowShortIfStatementsOnASingleLine: Never
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakAfterReturnType: None
    AlwaysBreakBeforeMultilineStrings: true
    AlwaysBreakTemplateDeclarations: Yes
    BinPackArguments: false
    BinPackParameters: false
    ColumnLimit: 80
    ConstructorInitializerAllOnOneLineOrOnePerLine: false
    ContinuationIndentWidth: 2
    Cpp11BracedListStyle: true
    FixNamespaceComments: true
    IndentWidth: 2
    ObjCBlockIndentWidth: 2
    PointerAlignment: Left
    SpacesInSquareBrackets: false
    Standard: Cpp11
    TabWidth: 2
    UseTab: Never