Files

91 lines
2.5 KiB
YAML
Raw Permalink Normal View History

2016-08-12 20:20:03 +02:00
---
Language: Cpp
AccessModifierOffset: -4
2021-04-12 22:30:35 -05:00
AlignAfterOpenBracket: DontAlign
2016-08-14 20:46:24 +02:00
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
2021-04-12 22:30:35 -05:00
AlignEscapedNewlines: DontAlign
2016-08-12 20:20:03 +02:00
AlignOperands: true
2021-04-12 22:30:35 -05:00
AlignTrailingComments: false
2016-08-12 20:20:03 +02:00
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
2016-08-12 20:20:03 +02:00
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Never
2016-08-12 20:20:03 +02:00
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
2016-08-24 21:23:00 +02:00
BraceWrapping:
AfterCaseLabel: true
2016-08-24 21:23:00 +02:00
AfterClass: true
AfterControlStatement: true
AfterEnum: true
2016-08-24 21:23:00 +02:00
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
2016-08-24 21:23:00 +02:00
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true
2016-08-24 21:23:00 +02:00
IndentBraces: false
2016-08-12 20:20:03 +02:00
BreakBeforeBinaryOperators: None
2016-08-24 21:23:00 +02:00
BreakBeforeBraces: Custom
2016-08-12 20:20:03 +02:00
BreakBeforeTernaryOperators: false
BreakConstructorInitializers: BeforeComma
2016-08-12 20:20:03 +02:00
ColumnLimit: 0
CommentPragmas: '^ (IWYU pragma:|NOLINT)'
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DerivePointerAlignment: false
DisableFormat: false
ForEachMacros: []
IncludeCategories:
- Regex: '^"(stdafx|PrecompiledHeader)'
Priority: -2
- Regex: '^".*Common'
Priority: -1
- Regex: '^<'
Priority: 1
- Regex: '^"'
Priority: 2
IndentCaseLabels: true
IndentWidth: 4
IndentWrappedFunctionNames: false
KeepEmptyLinesAtTheStartOfBlocks: true
MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 3
NamespaceIndentation: All
2016-08-12 20:20:03 +02:00
ObjCBlockIndentWidth: 2
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Left
ReflowComments: false
2016-08-12 20:20:03 +02:00
SortIncludes: false
SpaceAfterCStyleCast: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
2016-08-12 20:20:03 +02:00
SpacesInAngles: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 4
2025-06-12 23:07:23 -05:00
UseTab: AlignWithSpaces
2016-08-12 20:20:03 +02:00
...