OpenXR-MixedReality/.clang-format

37 строки
1.0 KiB
YAML

---
# Created at https://zed0.co.uk/clang-format-configurator/
AllowShortBlocksOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: 'false'
AccessModifierOffset: '-4'
AlignEscapedNewlines: 'Left'
AlwaysBreakTemplateDeclarations: 'true'
BinPackParameters: false
BinPackArguments: false
BreakBeforeBraces: Custom
BreakConstructorInitializers: 'BeforeComma'
ColumnLimit: '140'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'false'
IndentCaseLabels: 'false'
IndentWidth: '4'
IndentWrappedFunctionNames: 'false'
ForEachMacros: ['TEST_CLASS']
KeepEmptyLinesAtTheStartOfBlocks: 'false'
MaxEmptyLinesToKeep: '1'
NamespaceIndentation: All
PenaltyReturnTypeOnItsOwnLine: 100
PointerAlignment: Left
SortIncludes: 'false'
SpaceAfterCStyleCast: 'false'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: 'false'
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInContainerLiterals: 'false'
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
Standard: Cpp11
UseTab: Never
...