Meta: Alphabetize clang-format options

Except for Language, which is typically first. This helps when scrolling
down the list of options in the clang-format documentation.
This commit is contained in:
Timothy Flynn 2023-07-07 22:37:46 -04:00 committed by Linus Groh
parent db5bde01dc
commit 1e733b1cf4
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00

View file

@ -1,16 +1,16 @@
--- ---
Language: Cpp Language: Cpp
BasedOnStyle: WebKit
SpaceAfterTemplateKeyword: false
AlignEscapedNewlines: Left AlignEscapedNewlines: Left
AlignTrailingComments: true AlignTrailingComments: true
BasedOnStyle: WebKit
BraceWrapping:
AfterFunction: true
BreakBeforeBraces: Custom
BreakBeforeInheritanceComma: true BreakBeforeInheritanceComma: true
BreakConstructorInitializers: BeforeComma BreakConstructorInitializers: BeforeComma
IndentPPDirectives: AfterHash IndentPPDirectives: AfterHash
BreakBeforeBraces: Custom IndentRequiresClause: false
BraceWrapping:
AfterFunction: true
NamespaceIndentation: None NamespaceIndentation: None
QualifierAlignment: Right QualifierAlignment: Right
RequiresClausePosition: WithFollowing RequiresClausePosition: WithFollowing
IndentRequiresClause: false SpaceAfterTemplateKeyword: false