Reformat the .clang-format files

These files are YAML, changes to a more idiomatic YAML syntax
This commit is contained in:
Anders Jenbo
2020-03-29 20:45:57 +02:00
parent cf19c4f019
commit 312168d4c1
2 changed files with 17 additions and 21 deletions

View File

@@ -1,11 +1,9 @@
{
BasedOnStyle: webkit,
AlignTrailingComments: true,
AllowShortBlocksOnASingleLine: true,
AllowShortFunctionsOnASingleLine: None,
PointerAlignment: Right,
AlignConsecutiveAssignments: true,
TabWidth: 4,
UseTab: ForIndentation,
SortIncludes: false,
}
BasedOnStyle: webkit
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: true
AllowShortFunctionsOnASingleLine: None
PointerAlignment: Right
AlignConsecutiveAssignments: true
TabWidth: 4
UseTab: ForIndentation
SortIncludes: false

View File

@@ -1,10 +1,8 @@
{
BasedOnStyle: webkit,
AlignTrailingComments: true,
AllowShortBlocksOnASingleLine: true,
AllowShortFunctionsOnASingleLine: None,
PointerAlignment: Right,
TabWidth: 4,
UseTab: ForIndentation,
SortIncludes: false,
}
BasedOnStyle: webkit
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: true
AllowShortFunctionsOnASingleLine: None
PointerAlignment: Right
TabWidth: 4
UseTab: ForIndentation
SortIncludes: false