| --- |
| # Using clang-format-14 |
| # https://releases.llvm.org/14.0.0/tools/clang/docs/ClangFormatStyleOptions.html |
| Language: Cpp |
| # BasedOnStyle: LLVM |
| AccessModifierOffset: -2 |
| AlignAfterOpenBracket: Align |
| AlignArrayOfStructures: None |
| AlignConsecutiveAssignments: Consecutive |
| AlignConsecutiveBitFields: Consecutive |
| AlignConsecutiveDeclarations: None |
| AlignConsecutiveMacros: None |
| AlignEscapedNewlines: Right |
| AlignOperands: Align |
| AlignTrailingComments: true |
| AllowAllArgumentsOnNextLine: true |
| AllowAllParametersOfDeclarationOnNextLine: true |
| AllowShortBlocksOnASingleLine: Never |
| AllowShortCaseLabelsOnASingleLine: false |
| AllowShortEnumsOnASingleLine: false |
| AllowShortFunctionsOnASingleLine: Empty |
| AllowShortIfStatementsOnASingleLine: Never |
| AllowShortLambdasOnASingleLine: All |
| AllowShortLoopsOnASingleLine: false |
| AlwaysBreakAfterReturnType: None |
| AlwaysBreakBeforeMultilineStrings: false |
| AlwaysBreakTemplateDeclarations: Yes |
| AttributeMacros: [] |
| BinPackArguments: true |
| BinPackParameters: true |
| BitFieldColonSpacing: Both |
| BraceWrapping: |
| AfterCaseLabel: true |
| AfterClass: true |
| AfterControlStatement: Always |
| AfterEnum: true |
| AfterFunction: true |
| AfterNamespace: true |
| AfterObjCDeclaration: true |
| AfterStruct: true |
| AfterUnion: true |
| AfterExternBlock: true |
| BeforeCatch: true |
| BeforeElse: true |
| BeforeLambdaBody: false |
| BeforeWhile: false |
| IndentBraces: false |
| SplitEmptyFunction: false |
| SplitEmptyRecord: false |
| SplitEmptyNamespace: false |
| BreakAfterJavaFieldAnnotations: true |
| BreakBeforeBinaryOperators: None |
| BreakBeforeBraces: Custom |
| BreakBeforeConceptDeclarations: true |
| BreakBeforeTernaryOperators: true |
| BreakConstructorInitializers: AfterColon |
| BreakInheritanceList: AfterColon |
| BreakStringLiterals: false |
| ColumnLimit: 80 |
| CommentPragmas: '^ IWYU pragma:' |
| CompactNamespaces: false |
| ConstructorInitializerIndentWidth: 4 |
| ContinuationIndentWidth: 4 |
| Cpp11BracedListStyle: true |
| DeriveLineEnding: false |
| DerivePointerAlignment: false |
| PointerAlignment: Left |
| DisableFormat: false |
| EmptyLineAfterAccessModifier: Never |
| EmptyLineBeforeAccessModifier: Always |
| ExperimentalAutoDetectBinPacking: false |
| FixNamespaceComments: true |
| ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] |
| IfMacros: [] |
| IncludeBlocks: Regroup |
| IncludeCategories: |
| - Regex: '^[<"](gtest|gmock)' |
| Priority: 7 |
| - Regex: '^"config.h"' |
| Priority: -1 |
| - Regex: '^".*\.h"' |
| Priority: 1 |
| - Regex: '^".*\.hpp"' |
| Priority: 2 |
| - Regex: '^<.*\.h>' |
| Priority: 3 |
| - Regex: '^<.*\.hpp>' |
| Priority: 4 |
| - Regex: '^<.*' |
| Priority: 5 |
| - Regex: '.*' |
| Priority: 6 |
| IncludeIsMainRegex: '' |
| IncludeIsMainSourceRegex: '' |
| IndentAccessModifiers: false |
| IndentCaseBlocks: false |
| IndentCaseLabels: true |
| IndentExternBlock: NoIndent |
| IndentGotoLabels: false |
| IndentPPDirectives: None |
| IndentRequires: false |
| IndentWidth: 4 |
| IndentWrappedFunctionNames: true |
| InsertTrailingCommas: None |
| JavaImportGroups: [] |
| JavaScriptQuotes: Leave |
| JavaScriptWrapImports: true |
| KeepEmptyLinesAtTheStartOfBlocks: false |
| LambdaBodyIndentation: Signature |
| MacroBlockBegin: '' |
| MacroBlockEnd: '' |
| MaxEmptyLinesToKeep: 1 |
| NamespaceIndentation: None |
| NamespaceMacros: [] |
| ObjCBinPackProtocolList: Auto |
| ObjCBlockIndentWidth: 2 |
| ObjCBreakBeforeNestedBlockParam: true |
| ObjCSpaceAfterProperty: false |
| ObjCSpaceBeforeProtocolList: true |
| PPIndentWidth: -1 |
| PackConstructorInitializers: BinPack |
| PenaltyBreakAssignment: 2 |
| PenaltyBreakBeforeFirstCallParameter: 19 |
| PenaltyBreakComment: 300 |
| PenaltyBreakFirstLessLess: 120 |
| PenaltyBreakOpenParenthesis: 0 |
| PenaltyBreakString: 1000 |
| PenaltyBreakTemplateDeclaration: 10 |
| PenaltyExcessCharacter: 1000000 |
| PenaltyReturnTypeOnItsOwnLine: 60 |
| PenaltyIndentedWhitespace: 0 |
| QualifierAlignment: Leave |
| # Only used when QualifierAlignment is 'Custom' |
| # QualifierOrder: [] |
| RawStringFormats: [] |
| ReferenceAlignment: Pointer |
| ReflowComments: true |
| RemoveBracesLLVM: false |
| SeparateDefinitionBlocks: Leave |
| ShortNamespaceLines: 1 |
| SortIncludes: CaseSensitive |
| SortJavaStaticImport: Before |
| SortUsingDeclarations: true |
| SpaceAfterCStyleCast: false |
| SpaceAfterLogicalNot: false |
| SpaceAfterTemplateKeyword: true |
| SpaceAroundPointerQualifiers: Default |
| SpaceBeforeAssignmentOperators: true |
| SpaceBeforeCaseColon: false |
| SpaceBeforeCpp11BracedList: false |
| SpaceBeforeCtorInitializerColon: true |
| SpaceBeforeInheritanceColon: true |
| SpaceBeforeParens: ControlStatements |
| SpaceBeforeParensOptions: |
| AfterControlStatements: true |
| AfterForeachMacros: true |
| AfterFunctionDefinitionName: false |
| AfterFunctionDeclarationName: false |
| AfterIfMacros: true |
| AfterOverloadedOperator: false |
| BeforeNonEmptyParentheses: false |
| SpaceBeforeRangeBasedForLoopColon: true |
| SpaceBeforeSquareBrackets: false |
| SpaceInEmptyBlock: false |
| SpaceInEmptyParentheses: false |
| SpacesBeforeTrailingComments: 1 |
| SpacesInAngles: Never |
| SpacesInConditionalStatement: false |
| SpacesInContainerLiterals: true |
| SpacesInCStyleCastParentheses: false |
| SpacesInLineCommentPrefix: |
| Minimum: 1 |
| Maximum: -1 |
| SpacesInParentheses: false |
| SpacesInSquareBrackets: false |
| Standard: Latest |
| StatementAttributeLikeMacros: [] |
| StatementMacros: [] |
| TabWidth: 4 |
| TypenameMacros: [] |
| UseCRLF: false |
| UseTab: Never |
| WhitespaceSensitiveMacros: |
| - STRINGIZE |
| - PP_STRINGIZE |
| - BOOST_PP_STRINGIZE |
| - NS_SWIFT_NAME |
| - CF_SWIFT_NAME |
| ... |
| |