https://github.com/scummvm/scummvm
Raw File
Tip revision: a06f50421c1e672bda191d2b4775c4c31feb1194 authored by Lothar Serra Mari on 20 January 2023, 19:26:11 UTC
RELEASE: This is 2.7.0pre
Tip revision: a06f504
.clang-format
{
    BasedOnStyle: LLVM,
    UseTab: ForContinuationAndIndentation,
    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