Created
April 22, 2022 00:22
-
-
Save ominusliticus/d4985876f5644d3c361f66cacc7c7359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BasedOnStyle: GNU | |
IndentWidth: 4 | |
Language: Cpp | |
AccessModifierOffset: 0 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: true | |
AlignConsecutiveBitFields: true | |
AlignConsecutiveDeclarations: true | |
AlignEscapedNewlines: Right | |
AlignOperands: true | |
AlignTrailingComments: true | |
AllowAllArgumentsOnNextLine: false | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortBlocksOnASingleLine: Always | |
AllowShortCaseLabelsOnASingleLine: false | |
AllowShortEnumsOnASingleLine: true | |
AllowShortFunctionsOnASingleLine: InlineOnly | |
AllowShortIfStatementsOnASingleLine: AllIfsAndElse | |
AllowShortLambdasOnASingleLine: Empty | |
AlwaysBreakAfterDefinitionReturnType: None | |
AlwaysBreakAfterReturnType: None | |
AlwaysBreakBeforeMultilineStrings: false | |
AlwaysBreakTemplateDeclarations: Yes | |
BinPackArguments: false | |
BinPackParameters: false | |
BitFieldColonSpacing: Both | |
BraceWrapping: | |
AfterCaseLabel: true | |
AfterClass: true | |
AfterControlStatement: true | |
AfterEnum: false | |
AfterFunction: true | |
AfterNamespace: false | |
AfterObjCDeclaration: true | |
AfterUnion: true | |
AfterExternBlock: false | |
BeforeCatch: false | |
BeforeElse: true | |
BeforeLambdaBody: true | |
BeforeWhile: false | |
SplitEmptyFunction: true | |
SplitEmptyRecord: true | |
SplitEmptyNamespace: true | |
BreakBeforeBraces: Custom | |
BreakBeforeConceptDeclarations: true | |
BreakBeforeTernaryOperators: true | |
BreakConstructorInitializers: BeforeColon | |
BreakInheritanceList: AfterComma | |
BreakStringLiterals: true | |
ColumnLimit: 120 | |
ContinuationIndentWidth: 4 | |
DerivePointerAlignment: true | |
EmptyLineAfterAccessModifier: Always | |
EmptyLineBeforeAccessModifier: LogicalBlock | |
FixNamespaceComments: true | |
IncludeBlocks: Preserve | |
IndentAccessModifiers: false | |
IndentCaseBlocks: false | |
IndentCaseLabels: true | |
IndentPPDirectives: AfterHash | |
# IndentRequiresClause: false | |
# InsertBraces: false | |
LambdaBodyIndentation: Signature | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: All | |
PPIndentWidth: 2 | |
PackConstructorInitializers: Never | |
PointerAlignment: Left | |
# QualifierOrder: ['inline', 'static', 'const', 'constexpr', 'type', 'volatile'] | |
# RawStringFormats: | |
# - Language: Cpp | |
# Delimiters: | |
# - 'cc' | |
# - 'cpp' | |
# - 'hpp' | |
# - 'h' | |
ReferenceAlignment: Left | |
ReflowComments: true | |
# RequiresClausePosition: OwnLine | |
SeparateDefinitionBlocks: Always | |
SortIncludes: CaseInsensitive | |
SortUsingDeclarations: true | |
SpaceAfterLogicalNot: false | |
SpaceAfterTemplateKeyword: true | |
SpaceAroundPointerQualifiers: Default | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeCaseColon: true | |
SpaceBeforeCpp11BracedList: false | |
SpaceBeforeInheritanceColon: true | |
SpaceBeforeParens: ControlStatements | |
SpaceBeforeRangeBasedForLoopColon: true | |
SpaceBeforeSquareBrackets: false | |
SpaceInEmptyBlock: false | |
SpaceInEmptyParentheses: false | |
SpacesBeforeTrailingComments: 4 | |
SpacesInAngles: Never | |
SpacesInConditionalStatement: false | |
SpacesInContainerLiterals: true | |
SpacesInLineCommentPrefix: | |
Minimum: 1 | |
Maximum: -1 | |
SpacesInParentheses: false | |
SpacesInSquareBrackets: false | |
TabWidth: 4 | |
UseCRLF: false | |
UseTab: Always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment