Last active
August 23, 2017 08:49
-
-
Save daoseng33/046be13f472f7bb62b64842f6528fed0 to your computer and use it in GitHub Desktop.
AlleyStore ObjC 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
--- | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -2 | |
ConstructorInitializerIndentWidth: 4 | |
AlignEscapedNewlinesLeft: false | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: false | |
AlwaysBreakTemplateDeclarations: false | |
AlwaysBreakBeforeMultilineStrings: false | |
BreakBeforeBinaryOperators: false | |
BreakBeforeTernaryOperators: true | |
BreakConstructorInitializersBeforeComma: false | |
BinPackParameters: true | |
ColumnLimit: 0 | |
IndentWidth: 4 | |
ConstructorInitializerAllOnOneLineOrOnePerLine: false | |
DerivePointerBinding: false | |
ExperimentalAutoDetectBinPacking: false | |
IndentCaseLabels: true | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: None | |
ObjCSpaceAfterProperty: true | |
ObjCSpaceBeforeProtocolList: true | |
ObjCBlockIndentWidth: 2 | |
PenaltyBreakBeforeFirstCallParameter: 19 | |
PenaltyBreakComment: 300 | |
PenaltyBreakString: 1000 | |
PenaltyBreakFirstLessLess: 120 | |
PenaltyExcessCharacter: 1000000 | |
PenaltyReturnTypeOnItsOwnLine: 60 | |
PointerBindsToType: false | |
SpacesBeforeTrailingComments: 1 | |
Cpp11BracedListStyle: true | |
Standard: Cpp11 | |
TabWidth: 4 | |
UseTab: ForIndentation | |
BreakBeforeBraces: Attach | |
IndentFunctionDeclarationAfterType: false | |
SpacesInParentheses: false | |
SpacesInAngles: false | |
SpaceInEmptyParentheses: false | |
SpacesInCStyleCastParentheses: false | |
SpacesInSquareBrackets: false | |
SpacesInContainerLiterals: false | |
SpaceBeforeAssignmentOperators: true | |
ContinuationIndentWidth: 4 | |
CommentPragmas: '^ IWYU pragma:' | |
SpaceBeforeParens: ControlStatements | |
PointerAlignment: Right |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment