mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-07 21:17:07 +09:00

This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
35 lines
833 B
YAML
35 lines
833 B
YAML
---
|
|
AlignEscapedNewlines: Left
|
|
AlignTrailingComments:
|
|
Kind: Always
|
|
OverEmptyLines: 0
|
|
BasedOnStyle: WebKit
|
|
BraceWrapping:
|
|
AfterFunction: true
|
|
BreakBeforeBraces: Custom
|
|
BreakBeforeInheritanceComma: true
|
|
BreakConstructorInitializers: BeforeComma
|
|
IndentPPDirectives: AfterHash
|
|
IndentRequiresClause: false
|
|
InsertNewlineAtEOF: true
|
|
LineEnding: LF
|
|
NamespaceIndentation: None
|
|
QualifierAlignment: Right
|
|
RemoveSemicolon: true
|
|
RequiresClausePosition: WithFollowing
|
|
RequiresExpressionIndentation: OuterScope
|
|
SpaceAfterTemplateKeyword: false
|
|
WrapNamespaceBodyWithEmptyLines: Always
|
|
|
|
---
|
|
Language: ObjC
|
|
BinPackParameters: false
|
|
BraceWrapping:
|
|
AfterObjCDeclaration: true
|
|
ObjCBinPackProtocolList: Never
|
|
ObjCBlockIndentWidth: 4
|
|
ObjCBreakBeforeNestedBlockParam: true
|
|
ObjCSpaceAfterProperty: true
|
|
ObjCSpaceBeforeProtocolList: true
|
|
|
|
...
|