Procházet zdrojové kódy

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 před 2 roky
rodič
revize
1e733b1cf4
1 změnil soubory, kde provedl 6 přidání a 6 odebrání
  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