Last active
May 10, 2023 03:36
-
-
Save nibble-4bits/1eb96850c79961a96435f3e63f154ccd to your computer and use it in GitHub Desktop.
My custom .clang-format config
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
| --- | |
| # Uses clang-format-15 | |
| AccessModifierOffset: -4 | |
| AlignAfterOpenBracket: Align | |
| AlignArrayOfStructures: Right | |
| AlignConsecutiveAssignments: | |
| Enabled: true | |
| AcrossEmptyLines: false | |
| AcrossComments: true | |
| AlignCompound: true | |
| PadOperators: true | |
| AlignConsecutiveBitFields: Consecutive | |
| AlignConsecutiveDeclarations: | |
| Enabled: true | |
| AcrossEmptyLines: false | |
| AcrossComments: true | |
| AlignConsecutiveMacros: Consecutive | |
| AlignEscapedNewlines: Left | |
| AlignOperands: Align | |
| AlignTrailingComments: true | |
| AllowAllArgumentsOnNextLine: false | |
| AllowAllParametersOfDeclarationOnNextLine: false | |
| AllowShortBlocksOnASingleLine: Empty | |
| AllowShortCaseLabelsOnASingleLine: false | |
| AllowShortEnumsOnASingleLine: false | |
| AllowShortFunctionsOnASingleLine: None | |
| AllowShortIfStatementsOnASingleLine: WithoutElse | |
| AllowShortLambdasOnASingleLine: Inline | |
| AllowShortLoopsOnASingleLine: false | |
| AlwaysBreakAfterReturnType: None | |
| AlwaysBreakBeforeMultilineStrings: true | |
| AlwaysBreakTemplateDeclarations: Yes | |
| BinPackArguments: false | |
| BinPackParameters: false | |
| BitFieldColonSpacing: Both | |
| BraceWrapping: | |
| AfterCaseLabel: true | |
| AfterClass: true | |
| AfterControlStatement: Always | |
| AfterEnum: true | |
| AfterFunction: true | |
| AfterNamespace: true | |
| AfterStruct: true | |
| AfterUnion: true | |
| AfterExternBlock: true | |
| BeforeCatch: true | |
| BeforeElse: true | |
| BeforeLambdaBody: false | |
| BeforeWhile: false | |
| IndentBraces: false | |
| SplitEmptyFunction: true | |
| SplitEmptyRecord: true | |
| SplitEmptyNamespace: true | |
| BreakBeforeBinaryOperators: NonAssignment | |
| BreakBeforeBraces: Custom | |
| BreakBeforeConceptDeclarations: Always | |
| BreakBeforeTernaryOperators: true | |
| BreakConstructorInitializers: BeforeColon | |
| BreakInheritanceList: BeforeColon | |
| BreakStringLiterals: false | |
| ColumnLimit: 80 | |
| CompactNamespaces: false | |
| ConstructorInitializerIndentWidth: 4 | |
| ContinuationIndentWidth: 4 | |
| Cpp11BracedListStyle: true | |
| DeriveLineEnding: true | |
| DerivePointerAlignment: false | |
| EmptyLineAfterAccessModifier: Never | |
| EmptyLineBeforeAccessModifier: Always | |
| FixNamespaceComments: true | |
| IncludeBlocks: Preserve | |
| IncludeCategories: | |
| - Regex: '^<ext/.*\.h>' | |
| Priority: 2 | |
| SortPriority: 0 | |
| CaseSensitive: false | |
| - Regex: '^<.*\.h>' | |
| Priority: 1 | |
| SortPriority: 0 | |
| CaseSensitive: false | |
| - Regex: "^<.*" | |
| Priority: 2 | |
| SortPriority: 0 | |
| CaseSensitive: false | |
| - Regex: ".*" | |
| Priority: 3 | |
| SortPriority: 0 | |
| CaseSensitive: false | |
| IndentAccessModifiers: false | |
| IndentCaseBlocks: false | |
| IndentCaseLabels: true | |
| IndentExternBlock: Indent | |
| IndentGotoLabels: false | |
| IndentPPDirectives: AfterHash | |
| IndentRequiresClause: false | |
| IndentWidth: 4 | |
| IndentWrappedFunctionNames: true | |
| InsertBraces: false | |
| KeepEmptyLinesAtTheStartOfBlocks: false | |
| LambdaBodyIndentation: Signature | |
| Language: Cpp | |
| MaxEmptyLinesToKeep: 1 | |
| NamespaceIndentation: All | |
| PPIndentWidth: 2 | |
| PackConstructorInitializers: Never | |
| PointerAlignment: Left | |
| QualifierAlignment: Leave | |
| ReferenceAlignment: Pointer | |
| ReflowComments: false | |
| RequiresClausePosition: OwnLine | |
| SeparateDefinitionBlocks: Always | |
| ShortNamespaceLines: 8 | |
| SortIncludes: CaseSensitive | |
| SortUsingDeclarations: true | |
| SpaceAfterCStyleCast: false | |
| SpaceAfterLogicalNot: false | |
| SpaceAfterTemplateKeyword: false | |
| SpaceAroundPointerQualifiers: Default | |
| SpaceBeforeAssignmentOperators: true | |
| SpaceBeforeCaseColon: false | |
| SpaceBeforeCpp11BracedList: false | |
| SpaceBeforeCtorInitializerColon: true | |
| SpaceBeforeInheritanceColon: true | |
| SpaceBeforeParens: ControlStatements | |
| SpaceBeforeRangeBasedForLoopColon: true | |
| SpaceBeforeSquareBrackets: false | |
| SpaceInEmptyBlock: false | |
| SpaceInEmptyParentheses: false | |
| SpacesBeforeTrailingComments: 1 | |
| SpacesInAngles: Never | |
| SpacesInCStyleCastParentheses: false | |
| SpacesInConditionalStatement: false | |
| SpacesInLineCommentPrefix: | |
| Minimum: 1 | |
| Maximum: -1 | |
| SpacesInParentheses: false | |
| SpacesInSquareBrackets: false | |
| Standard: c++20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment