1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- ---
- Language: Cpp
- BasedOnStyle: llvm
- IndentWidth: 4
- ColumnLimit: 90
- SpacesBeforeTrailingComments: 2
- ForEachMacros: [ foreach, LIST_FOREACH, LIST_FOREACH_SAFE ]
- DisableFormat: false
- SpaceBeforeParens: Never
- BinPackParameters: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AlignAfterOpenBracket: Align
- AlwaysBreakAfterReturnType: All
- IndentCaseLabels: true
- IncludeBlocks: Regroup
- IncludeCategories:
-
- - Regex: '^(<(open62541)\/)'
- Priority: 10
-
- - Regex: '^("(open62541)\/)'
- Priority: 20
-
- - Regex: '^((<|")(([[:alnum:]]+\/)?ua_|open62541_))'
- Priority: 30
-
- - Regex: '<[[:alnum:].]+>'
- Priority: 40
-
- - Regex: '.*'
- Priority: 50
|