Last active
March 23, 2024 18:00
-
-
Save angelfor3v3r/c14e9433b3fee18c8951272f0d4fdbae to your computer and use it in GitHub Desktop.
My clang-format.
This file contains hidden or 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
# clang-format version 17.0.3 | |
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: BlockIndent | |
AlignArrayOfStructures: Right # TODO: None? | |
AlignConsecutiveAssignments: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignCompound: true | |
PadOperators: true | |
AlignConsecutiveBitFields: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignCompound: true | |
PadOperators: true | |
AlignConsecutiveDeclarations: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignCompound: true | |
PadOperators: true | |
AlignConsecutiveMacros: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignCompound: true | |
PadOperators: true | |
AlignConsecutiveShortCaseStatements: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignCaseColons: false | |
AlignEscapedNewlines: Left | |
AlignOperands: AlignAfterOperator | |
AlignTrailingComments: | |
Kind: Always | |
OverEmptyLines: 0 | |
AllowAllArgumentsOnNextLine: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: Empty | |
AllowShortCaseLabelsOnASingleLine: false | |
AllowShortEnumsOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: Empty | |
AllowShortIfStatementsOnASingleLine: Never | |
AllowShortLambdasOnASingleLine: Inline | |
AllowShortLoopsOnASingleLine: false | |
AlwaysBreakAfterReturnType: None | |
AlwaysBreakBeforeMultilineStrings: false | |
AlwaysBreakTemplateDeclarations: Yes | |
# AttributeMacros: # TODO | |
BinPackArguments: false | |
BinPackParameters: false | |
BitFieldColonSpacing: Both | |
BraceWrapping: | |
AfterCaseLabel: true | |
AfterClass: true | |
AfterControlStatement: Always | |
AfterEnum: true | |
AfterExternBlock: true | |
AfterFunction: true | |
AfterNamespace: true | |
AfterObjCDeclaration: true | |
AfterStruct: true | |
AfterUnion: true | |
BeforeCatch: true | |
BeforeElse: true | |
BeforeLambdaBody: true | |
BeforeWhile: true | |
IndentBraces: false | |
SplitEmptyFunction: false | |
SplitEmptyRecord: false | |
SplitEmptyNamespace: false | |
BreakAfterAttributes: Never | |
BreakAfterJavaFieldAnnotations: false | |
BreakArrays: true | |
BreakBeforeBinaryOperators: NonAssignment | |
BreakBeforeConceptDeclarations: Always | |
BreakBeforeBraces: Custom | |
BreakBeforeInlineASMColon: Always | |
BreakBeforeTernaryOperators: true | |
BreakConstructorInitializers: AfterColon | |
BreakInheritanceList: AfterComma | |
BreakStringLiterals: true | |
ColumnLimit: 140 | |
# CommentPragmas: # TODO | |
CompactNamespaces: false | |
ConstructorInitializerIndentWidth: 4 | |
ContinuationIndentWidth: 4 | |
Cpp11BracedListStyle: true | |
DerivePointerAlignment: false | |
DisableFormat: false | |
EmptyLineAfterAccessModifier: Never | |
EmptyLineBeforeAccessModifier: LogicalBlock | |
FixNamespaceComments: true | |
# ForEachMacros # TODO | |
# IfMacros # TODO | |
IncludeBlocks: Preserve | |
# IncludeCategories # TODO | |
# IncludeIsMainRegex # TODO | |
# IncludeIsMainSourceRegex # TODO | |
IndentAccessModifiers: false | |
IndentCaseBlocks: false | |
IndentCaseLabels: true | |
IndentExternBlock: AfterExternBlock | |
IndentGotoLabels: false | |
IndentPPDirectives: None | |
IndentRequiresClause: true | |
IndentWidth: 4 | |
IndentWrappedFunctionNames: false | |
InsertBraces: false | |
InsertNewlineAtEOF: true | |
InsertTrailingCommas: None | |
IntegerLiteralSeparator: | |
Binary: 0 | |
BinaryMinDigits: 0 | |
Decimal: 0 | |
DecimalMinDigits: 0 | |
Hex: 0 | |
HexMinDigits: 0 | |
# JavaImportGroups # TODO: ? | |
JavaScriptQuotes: Leave | |
JavaScriptWrapImports: true | |
KeepEmptyLinesAtTheStartOfBlocks: false | |
KeepEmptyLinesAtEOF: true | |
LambdaBodyIndentation: Signature | |
LineEnding: LF | |
# MacroBlockBegin # TODO | |
# MacroBlockEnd # TODO | |
# Macros # TODO | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: All | |
# NamespaceMacros # TODO: ? | |
ObjCBinPackProtocolList: Auto | |
ObjCBlockIndentWidth: 4 | |
ObjCBreakBeforeNestedBlockParam: true | |
ObjCSpaceAfterProperty: false | |
ObjCSpaceBeforeProtocolList: true | |
PackConstructorInitializers: NextLine | |
PenaltyBreakAssignment: 2 | |
PenaltyBreakBeforeFirstCallParameter: 15 | |
PenaltyBreakComment: 100 | |
PenaltyBreakFirstLessLess: 15 | |
PenaltyBreakOpenParenthesis: 0 | |
PenaltyBreakString: 100 | |
PenaltyBreakTemplateDeclaration: 15 | |
PenaltyExcessCharacter: 1000000 | |
PenaltyIndentedWhitespace: 0 | |
PenaltyReturnTypeOnItsOwnLine: 15 | |
PointerAlignment: Left | |
PPIndentWidth: -1 | |
QualifierAlignment: Leave # TODO: Custom? | |
# QualifierOrder: ['static', 'volatile', 'inline', 'constexpr', 'const', 'type', 'restrict'] # TODO | |
# RawStringFormats # TODO: ? | |
ReferenceAlignment: Pointer | |
ReflowComments: true | |
RemoveBracesLLVM: false | |
RemoveParentheses: Leave | |
RemoveSemicolon: false | |
RequiresClausePosition: OwnLine | |
RequiresExpressionIndentation: OuterScope | |
SeparateDefinitionBlocks: Leave | |
ShortNamespaceLines: 0 | |
SortIncludes: Never | |
SortJavaStaticImport: Before | |
SortUsingDeclarations: LexicographicNumeric | |
SpaceAfterCStyleCast: false | |
SpaceAfterLogicalNot: false | |
SpaceAfterTemplateKeyword: true | |
SpaceAroundPointerQualifiers: Default | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeCaseColon: false | |
SpaceBeforeCpp11BracedList: false | |
SpaceBeforeCtorInitializerColon: true | |
SpaceBeforeInheritanceColon: true | |
SpaceBeforeJsonColon: false | |
SpaceBeforeParens: Custom | |
SpaceBeforeParensOptions: | |
AfterControlStatements: true | |
AfterForeachMacros: true | |
AfterFunctionDefinitionName: false | |
AfterFunctionDeclarationName: false | |
AfterIfMacros: true | |
AfterOverloadedOperator: true | |
AfterRequiresInClause: true | |
AfterRequiresInExpression: false | |
BeforeNonEmptyParentheses: false | |
SpaceBeforeRangeBasedForLoopColon: true | |
SpaceBeforeSquareBrackets: false | |
SpaceInEmptyBlock: false | |
SpacesBeforeTrailingComments: 1 | |
SpacesInAngles: Never | |
SpacesInContainerLiterals: false | |
SpacesInLineCommentPrefix: | |
Minimum: 1 | |
Maximum: -1 | |
SpacesInParens: Never | |
# SpacesInParensOptions: | |
# InCStyleCasts: false | |
# InConditionalStatements: false | |
# InEmptyParentheses: false | |
# Other: false | |
SpacesInSquareBrackets: false | |
Standard: Latest | |
# StatementAttributeLikeMacros # TODO | |
# StatementMacros # TODO | |
TabWidth: 4 | |
# TypeNames # TODO | |
# TypenameMacros # TODO | |
UseTab: Never | |
VerilogBreakBetweenInstancePorts: true | |
# WhitespaceSensitiveMacros: # TODO | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment