Created
June 8, 2019 05:08
-
-
Save XcqRomance/d53061183b7ea514adbe6877c5428d7b to your computer and use it in GitHub Desktop.
clang-format代码工程格式化配置
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
--- | |
# Language: ObjC | |
BasedOnStyle: Google | |
AccessModifierOffset: 0 | |
ConstructorInitializerIndentWidth: 4 | |
SortIncludes: false | |
# 连续赋值时,对齐所有等号 | |
# AlignConsecutiveAssignments: true | |
AlignAfterOpenBracket: true | |
AlignEscapedNewlinesLeft: true | |
AlignOperands: false | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortBlocksOnASingleLine: false | |
AllowShortCaseLabelsOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: false | |
AllowShortIfStatementsOnASingleLine: false | |
# AllowShortFunctionsOnASingleLine: All | |
AllowShortLoopsOnASingleLine: false | |
AlwaysBreakAfterDefinitionReturnType: false | |
AlwaysBreakTemplateDeclarations: false | |
AlwaysBreakBeforeMultilineStrings: false | |
BreakBeforeBinaryOperators: None | |
BreakBeforeTernaryOperators: false | |
BreakConstructorInitializersBeforeComma: false | |
BinPackArguments: true | |
BinPackParameters: true | |
ColumnLimit: 110 | |
ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
DerivePointerAlignment: false | |
ExperimentalAutoDetectBinPacking: false | |
IndentCaseLabels: true | |
IndentWrappedFunctionNames: false | |
IndentFunctionDeclarationAfterType: false | |
MaxEmptyLinesToKeep: 1 # 连续的空行保留几行 | |
KeepEmptyLinesAtTheStartOfBlocks: false | |
NamespaceIndentation: Inner | |
ObjCBlockIndentWidth: 4 | |
ObjCSpaceAfterProperty: true | |
ObjCSpaceBeforeProtocolList: true | |
PenaltyBreakBeforeFirstCallParameter: 10000 | |
PenaltyBreakComment: 300 | |
PenaltyBreakString: 1000 | |
PenaltyBreakFirstLessLess: 120 | |
PenaltyExcessCharacter: 1000000 | |
PenaltyReturnTypeOnItsOwnLine: 200 | |
PointerAlignment: Right | |
SpacesBeforeTrailingComments: 1 | |
Cpp11BracedListStyle: true | |
Standard: Auto | |
IndentWidth: 4 | |
TabWidth: 4 | |
UseTab: Never | |
BreakBeforeBraces: Custom | |
BraceWrapping: | |
AfterClass: true | |
AfterControlStatement: false | |
AfterEnum: false | |
AfterFunction: false | |
AfterNamespace: true | |
AfterObjCDeclaration: false # ObjC定义后面是否换行 | |
AfterStruct: false | |
AfterUnion: false | |
BeforeCatch: false | |
BeforeElse: false | |
IndentBraces: false | |
SpacesInParentheses: false | |
SpacesInSquareBrackets: false | |
SpacesInAngles: false | |
SpaceInEmptyParentheses: false | |
SpacesInCStyleCastParentheses: false | |
SpaceAfterCStyleCast: false | |
SpacesInContainerLiterals: true | |
SpaceBeforeAssignmentOperators: true | |
ContinuationIndentWidth: 4 | |
CommentPragmas: '^ IWYU pragma:' | |
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] | |
SpaceBeforeParens: ControlStatements | |
DisableFormat: false | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment