Pārlūkot izejas kodu

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.
Timothy Flynn 2 gadi atpakaļ
vecāks
revīzija
1e733b1cf4
1 mainītis faili ar 6 papildinājumiem un 6 dzēšanām
  1. 6 6
      .clang-format

+ 6 - 6
.clang-format

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