scummvm/.clang-format
Bastien Bouclet 5a1909f5fd ALL: .clang-foramt fixes
The project code formatting conventions specify we use tabs for
indentation, and don't increase the indentation level in namespaces.
2020-05-06 21:30:11 +02:00

25 lines
710 B
YAML

{
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,
SpaceBeforeSquareBrackets: false,
SpaceInEmptyParentheses: false,
SpacesInAngles: false,
SpacesInConditionalStatement: false,
SpacesInParentheses: false,
SpacesInSquareBrackets: false,
}