--- Language: Cpp BasedOnStyle: llvm IndentWidth: 4 ColumnLimit: 90 SpacesBeforeTrailingComments: 2 ForEachMacros: [ foreach, LIST_FOREACH, LIST_FOREACH_SAFE ] DisableFormat: false # No space between if and parentheses SpaceBeforeParens: Never # Format function declarations BinPackParameters: true AllowAllParametersOfDeclarationOnNextLine: true AlignAfterOpenBracket: Align AlwaysBreakAfterReturnType: All IndentCaseLabels: true # Order of includes IncludeBlocks: Regroup # Includes are sorted with increasing priority number and then alphabetically # The first regex which matches is the resulting priority # We want something like this: #include #include #include #include #include "server/ua_server_internal.h" #include "ua_network_tcp.h" #include "ua_securechannel.h" #include "ua_types_encoding_binary.h" #include #include #include "testing_clock.h" #include "thread_wrapper.h" IncludeCategories: # Public open62541 includes starting with ' Priority: 40 # The rest - Regex: '.*' Priority: 50