Meta: Support using clang-format on Objective-C++ files

We can (and have to) remove the C++ language identifier from the main
set of rules. This will allow these rule to propagate to all languages.
This commit is contained in:
Timothy Flynn 2023-08-20 16:35:01 -04:00 committed by Tim Flynn
parent 43da0701fc
commit 66a89bd695

View File

@ -1,5 +1,4 @@
---
Language: Cpp
AlignEscapedNewlines: Left
AlignTrailingComments:
Kind: Always
@ -20,3 +19,16 @@ RemoveSemicolon: true
RequiresClausePosition: WithFollowing
RequiresExpressionIndentation: OuterScope
SpaceAfterTemplateKeyword: false
---
Language: ObjC
BinPackParameters: false
BraceWrapping:
AfterObjCDeclaration: true
ObjCBinPackProtocolList: Never
ObjCBlockIndentWidth: 4
ObjCBreakBeforeNestedBlockParam: true
ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
...