Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • murchhana_replays
  • d2n-covid19
  • v1.0.0
  • 1.0
  • 0.1
6 results

.clang-format

Blame
  • .clang-format 944 B
    ---
    Standard: Cpp11
    BasedOnStyle:  Chromium
    AccessModifierOffset: -2
    AlignConsecutiveAssignments: true
    AlignConsecutiveDeclarations: true
    AlignEscapedNewlines: true
    AlignTrailingComments: true
    AllowShortCaseLabelsOnASingleLine: false
    AllowShortFunctionsOnASingleLine: All
    AllowShortIfStatementsOnASingleLine: false
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakAfterDefinitionReturnType: None
    AlwaysBreakAfterReturnType: None
    AlwaysBreakBeforeMultilineStrings: false
    AlwaysBreakTemplateDeclarations: true
    BinPackArguments: true
    BinPackParameters: true
    BreakConstructorInitializersBeforeComma: true
    BreakStringLiterals: true
    ColumnLimit: 100
    CommentPragmas:  '^ IWYU pragma:'
    CompactNamespaces: false
    ConstructorInitializerAllOnOneLineOrOnePerLine: true
    Cpp11BracedListStyle: true
    JavaScriptQuotes: Leave
    JavaScriptWrapImports: true
    PointerBindsToType: true
    SpaceAfterControlStatementKeyword: true
    TabWidth:        8
    UseTab:          Never
    ...