Created
December 26, 2023 11:24
-
-
Save arifbalik/bca29427b455e75cc1cdf5fb2c95b1ec to your computer and use it in GitHub Desktop.
A Better ENDA C Clang Format File
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
# Copyright (c) 2023 ENDA | |
# All rights reserved. | |
# | |
# This software and associated documentation files (the "Software") are | |
# the proprietary and confidential information of ENDA, including any | |
# accompanying written materials, and may not be disclosed to third parties | |
# or copied or duplicated in any form, in whole or in part, without the prior | |
# written consent of ENDA. | |
--- | |
DisableFormat: false | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: BlockIndent | |
AlignConsecutiveMacros: | |
Enabled: true | |
AcrossEmptyLines: false | |
AcrossComments: false | |
AlignConsecutiveDeclarations: AcrossEmptyLines | |
AlignEscapedNewlines: Right | |
AlignOperands: AlignAfterOperator | |
AlignTrailingComments: Always | |
AllowAllArgumentsOnNextLine: false | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortBlocksOnASingleLine: Always | |
AllowShortCaseLabelsOnASingleLine: true | |
AllowShortFunctionsOnASingleLine: true | |
AllowShortIfStatementsOnASingleLine: AllIfsAndElse | |
AllowShortLoopsOnASingleLine: true | |
AlwaysBreakAfterDefinitionReturnType: None | |
AlwaysBreakAfterReturnType: AllDefinitions | |
AlwaysBreakBeforeMultilineStrings: true | |
BinPackArguments: true | |
BinPackParameters: true | |
BitFieldColonSpacing: Both | |
BraceWrapping: | |
AfterClass: false | |
AfterControlStatement: false | |
AfterEnum: false | |
AfterFunction: true | |
AfterNamespace: true | |
AfterStruct: false | |
AfterUnion: false | |
AfterExternBlock: false | |
IndentBraces: false | |
SplitEmptyFunction: true | |
SplitEmptyRecord: true | |
SplitEmptyNamespace: true | |
BracedInitializerIndentWidth: 2 | |
BreakAdjacentStringLiterals: true | |
BreakArrays: false | |
BreakBeforeBinaryOperators: None | |
BreakBeforeBraces: Custom | |
BreakBeforeTernaryOperators: true | |
BreakConstructorInitializers: BeforeComma | |
BreakStringLiterals: true | |
ColumnLimit: 0 | |
CommentPragmas: '^ IWYU pragma:' | |
CompactNamespaces: false | |
ConstructorInitializerIndentWidth: 8 | |
ContinuationIndentWidth: 8 | |
DerivePointerAlignment: false | |
EmptyLineAfterAccessModifier: Always | |
ExperimentalAutoDetectBinPacking: true | |
FixNamespaceComments: true | |
IncludeBlocks: Regroup | |
IncludeCategories: | |
- Regex: '.*' | |
Priority: 1 | |
IncludeIsMainRegex: '(Test)?$' | |
IndentCaseLabels: true | |
IndentGotoLabels: true | |
IndentPPDirectives: AfterHash | |
IndentWidth: 8 | |
IndentWrappedFunctionNames: false | |
KeepEmptyLinesAtTheStartOfBlocks: false | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: None | |
PointerAlignment: Right | |
ReflowComments: true | |
SortIncludes: true | |
SpaceAfterCStyleCast: false | |
SpaceAfterTemplateKeyword: true | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeCtorInitializerColon: true | |
SpaceBeforeParens: ControlStatementsExceptForEachMacros | |
SpaceBeforeRangeBasedForLoopColon: true | |
SpaceInEmptyParentheses: false | |
SpacesBeforeTrailingComments: 1 | |
SpacesInAngles: false | |
SpacesInContainerLiterals: false | |
SpacesInCStyleCastParentheses: false | |
SpacesInParentheses: false | |
SpacesInSquareBrackets: false | |
TabWidth: 8 | |
UseTab: Always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment