| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- AccessModifierOffset: -4
- AllowAllArgumentsOnNextLine: false
- AllowAllParametersOfDeclarationOnNextLine: false
- AlignAfterOpenBracket: DontAlign
- AlignConsecutiveAssignments: false
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlines: Left
- AlignOperands: false
- AlignTrailingComments:
- Kind: Always
- OverEmptyLines: 1
- AllowShortBlocksOnASingleLine: Empty
- AllowShortCaseLabelsOnASingleLine: true
- AllowShortFunctionsOnASingleLine: Inline
- AlwaysBreakTemplateDeclarations: Yes
- BinPackArguments: true
- BinPackParameters: true
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterCaseLabel: true
- AfterControlStatement: true
- AfterFunction: true
- BeforeElse: true
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
- BreakConstructorInitializers: AfterColon
- ColumnLimit: 150
- CompactNamespaces: false
- Cpp11BracedListStyle: true
- FixNamespaceComments: true
- IncludeBlocks: Merge
- IncludeCategories:
- - Regex: '^<RmlUi/'
- Priority: 1
- IndentCaseLabels: false
- IndentPPDirectives: BeforeHash
- IndentWidth: 4
- IndentWrappedFunctionNames: false
- KeepEmptyLinesAtTheStartOfBlocks: false
- Language: Cpp
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: Inner
- PointerAlignment: Left
- QualifierAlignment: Left
- ReflowComments: true
- SpaceAfterCStyleCast: false
- SpaceAfterLogicalNot: false
- SpaceAfterTemplateKeyword: true
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCpp11BracedList: false
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: ControlStatements
- SpaceBeforeRangeBasedForLoopColon: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: false
- SpacesInCStyleCastParentheses: false
- SpacesInContainerLiterals: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Cpp11
- StatementMacros:
- - RMLUI_RTTI_Define
- - RMLUI_RTTI_DefineWithParent
- TabWidth: 4
- UseTab: AlignWithSpaces
- WhitespaceSensitiveMacros: ['RMLUI_STRINGIFY']
|