Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make clang-format less strict #473

Closed
wants to merge 18 commits into from
20 changes: 6 additions & 14 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,24 @@ IndentWidth: 4
TabWidth: 4
UseCRLF: false
AlignTrailingComments: false
AllowAllConstructorInitializersOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: Empty
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakTemplateDeclarations: No
BinPackArguments: false
BinPackParameters: false
ExperimentalAutoDetectBinPacking: false
IndentCaseLabels: false
ObjCBinPackProtocolList: Auto
AlwaysBreakTemplateDeclarations: Yes
IndentCaseLabels: true
SpacesInSquareBrackets: false
SpacesInParentheses: false
SpacesInParentheses: true
F1F7Y marked this conversation as resolved.
Show resolved Hide resolved
SpaceAfterCStyleCast: false
SpaceInEmptyParentheses: false
SpaceAfterLogicalNot: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: true
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeParens: Never
F1F7Y marked this conversation as resolved.
Show resolved Hide resolved
SpaceBeforeRangeBasedForLoopColon: true
UseTab: Always
ColumnLimit: 140
UseTab: Never
ColumnLimit: 0
BreakBeforeBraces: Allman
AlignAfterOpenBracket: AlwaysBreak
IndentExternBlock: Indent
PointerAlignment: Left
SortIncludes: false
Expand Down
Loading