| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- AlignAfterOpenBracket: DontAlign
- AlignArrayOfStructures: 'Left'
- AlignConsecutiveAssignments: false
- AlignConsecutiveBitFields: 'AcrossEmptyLinesAndComments'
- AlignConsecutiveMacros: 'AcrossEmptyLinesAndComments'
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlines: Left
- AlignOperands: 'AlignAfterOperator'
- AlignTrailingComments: true
- AllowAllArgumentsOnNextLine: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AllowShortBlocksOnASingleLine: 'Empty'
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortEnumsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: Empty
- AllowShortIfStatementsOnASingleLine: WithoutElse
- AllowShortLambdasOnASingleLine: All
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: No
- BinPackArguments: false
- BinPackParameters: false
- BitFieldColonSpacing: 'Both'
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: true
- AfterStruct: true
- AfterUnion: true
- AfterExternBlock: true
- BeforeCatch: false
- BeforeElse: true
- BeforeLambdaBody: false
- BeforeWhile: false
- IndentBraces: false
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
- BreakBeforeBinaryOperators: All
- BreakBeforeConceptDeclarations: false
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializers: BeforeColon
- BreakInheritanceList: AfterComma
- BreakStringLiterals: true
- ColumnLimit: 80
- CompactNamespaces: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- AccessModifierOffset: -4
- Cpp11BracedListStyle: true
- DeriveLineEnding: true
- DerivePointerAlignment: false
- DisableFormat: false
- EmptyLineAfterAccessModifier: 'Never'
- EmptyLineBeforeAccessModifier: 'Always'
- FixNamespaceComments: true
- IncludeBlocks: Regroup
- IncludeCategories:
- - Regex: '"pch\.h"'
- Priority: 0
- - Regex: '<.+>'
- Priority: 1
- - Regex: '".+"'
- Priority: 2
- IndentAccessModifiers: false
- IndentCaseBlocks: true
- IndentCaseLabels: false
- IndentExternBlock: 'Indent'
- IndentGotoLabels: false
- IndentPPDirectives: 'AfterHash'
- IndentWidth: 4
- InsertTrailingCommas: 'Wrapped'
- KeepEmptyLinesAtTheStartOfBlocks: false
- LambdaBodyIndentation: 'Signature'
- Language: Cpp
- NamespaceIndentation: All
- PPIndentWidth: 4
- PointerAlignment: 'Left'
- ReferenceAlignment: 'Left'
- ReflowComments: true
- SortIncludes: CaseInsensitive
- SortUsingDeclarations: true
- SpaceAfterCStyleCast: false
- SpaceAfterLogicalNot: false
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCaseColon: false
- SpaceBeforeCpp11BracedList: false
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: 'Custom'
- SpaceBeforeParensOptions:
- AfterControlStatements: true
- AfterForeachMacros: true
- AfterFunctionDeclarationName: false
- AfterFunctionDefinitionName: false
- AfterIfMacros: true
- AfterOverloadedOperator: false
- BeforeNonEmptyParentheses: false
- SpaceBeforeRangeBasedForLoopColon : true
- SpaceBeforeSquareBrackets: false
- SpaceInEmptyBlock: false
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: Never
- SpacesInCStyleCastParentheses: false
- SpacesInConditionalStatement: false
- SpacesInContainerLiterals: false
- RemoveBracesLLVM: false
- SeparateDefinitionBlocks: 'Always'
- SpacesInLineCommentPrefix:
- Minimum: 1
- Maximum: 1
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Latest
- TabWidth: 4
- UseTab: Never
- PackConstructorInitializers: 'Never'
- QualifierAlignment: 'Custom'
- QualifierOrder: ['inline', 'static', 'const', 'constexpr', 'volatile', 'restrict', 'type']
- ForEachMacros: [TEST_CLASS, TEST_METHOD]
|