Skip to content
Snippets Groups Projects
Select Git revision
  • 90299be6a3b9d4f769e3d57c361f0d690419eb09
  • master default
  • irony
3 results

Installation.org

Blame
  • .clang-format 1.68 KiB
    ---
    BasedOnStyle: Mozilla
    AccessModifierOffset: '-1'
    AlignAfterOpenBracket: Align
    AlignConsecutiveAssignments: 'true'
    AlignConsecutiveDeclarations: 'false'
    AlignEscapedNewlines: Left
    AlignOperands: 'true'
    AlignTrailingComments: 'true'
    AllowAllParametersOfDeclarationOnNextLine: 'false'
    AllowShortBlocksOnASingleLine: 'false'
    AllowShortCaseLabelsOnASingleLine: 'false'
    AllowShortFunctionsOnASingleLine: Empty
    AllowShortIfStatementsOnASingleLine: 'false'
    AllowShortLoopsOnASingleLine: 'false'
    AlwaysBreakAfterDefinitionReturnType: TopLevel
    AlwaysBreakAfterReturnType: AllDefinitions
    AlwaysBreakBeforeMultilineStrings: 'false'
    AlwaysBreakTemplateDeclarations: 'Yes'
    BinPackArguments: 'true'
    BinPackParameters: 'false'
    BreakBeforeBinaryOperators: None
    BreakBeforeBraces: Custom
    BraceWrapping:
    #  AfterCaseLabel: false
      AfterClass: true
      AfterControlStatement: false
      AfterEnum: true
      AfterStruct: true
      AfterFunction: true
      AfterNamespace: true
      AfterUnion: true
      AfterExternBlock: true
      BeforeCatch: true
      BeforeElse: false
      IndentBraces: false
      SplitEmptyFunction: false
    
    BreakConstructorInitializers: BeforeColon
    ColumnLimit: '120'
    CompactNamespaces: 'true'
    ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
    Cpp11BracedListStyle: 'true'
    FixNamespaceComments: 'true'
    IndentCaseLabels: false
    KeepEmptyLinesAtTheStartOfBlocks: 'false'
    Language: Cpp
    MaxEmptyLinesToKeep: '1'
    NamespaceIndentation: None
    PenaltyBreakBeforeFirstCallParameter: 10000
    PointerAlignment: Left
    ReflowComments: 'true'
    SortUsingDeclarations: 'true'
    SpaceAfterTemplateKeyword: 'true'
    SpaceBeforeAssignmentOperators: 'true'
    SpaceBeforeRangeBasedForLoopColon: 'true'
    SpacesBeforeTrailingComments: '3'
    Standard: Auto
    UseTab: Never
    
    ...