Reformat the .clang-format files

These files are YAML, changes to a more idiomatic YAML syntax
This commit is contained in:
Gleb Mazovetskiy 2020-03-10 06:53:37 +00:00 committed by Anders Jenbo
commit d065202ff2
2 changed files with 18 additions and 22 deletions

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

View file

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