Revision b7cab6b4a3187d131aa98a3101bd545aa98a7034 authored by Eugene Sandulenko on 30 August 2020, 11:43:57 UTC, committed by Eugene Sandulenko on 30 August 2020, 11:43:57 UTC
1 parent 9e63a4c
Raw File
.clang-format
{
    BasedOnStyle: LLVM,
    UseTab: ForIndentation,
    IndentWidth: 4,
    TabWidth: 4,
    BreakBeforeBraces: Attach,
    IndentCaseLabels: false,
    ColumnLimit: 0,
    AccessModifierOffset: -4,
    NamespaceIndentation: None,
    SpaceBeforeParens: ControlStatements,
    PointerAlignment: Right,
    SpaceAfterCStyleCast: false,
    SpaceAfterTemplateKeyword: false,
    SpaceBeforeAssignmentOperators: true,
    SpaceBeforeCtorInitializerColon: true,
    SpaceBeforeInheritanceColon: true, 
    SpaceInEmptyParentheses: false,
    SpacesInAngles: false,
    SpacesInParentheses: false,
    SpacesInSquareBrackets: false,
    Standard: c++03,
}
back to top