tools: Fix clang-format values
According to the clang-format documentation some values in our .clang-format are incorrect. See: - https://clang.llvm.org/docs/ClangFormatStyleOptions.html#allowshortblocksonasingleline - https://clang.llvm.org/docs/ClangFormatStyleOptions.html#sortincludes Signed-off-by: Yuval Peress <peress@google.com>
This commit is contained in:
parent
7965fd2b4a
commit
0f40ddd957
|
@ -12,7 +12,7 @@
|
|||
---
|
||||
BasedOnStyle: LLVM
|
||||
AlignConsecutiveMacros: AcrossComments
|
||||
AllowShortBlocksOnASingleLine: false
|
||||
AllowShortBlocksOnASingleLine: Never
|
||||
AllowShortCaseLabelsOnASingleLine: false
|
||||
AllowShortEnumsOnASingleLine: false
|
||||
AllowShortFunctionsOnASingleLine: None
|
||||
|
@ -79,7 +79,7 @@ IndentCaseLabels: false
|
|||
IndentWidth: 8
|
||||
InsertBraces: true
|
||||
SpaceBeforeParens: ControlStatementsExceptControlMacros
|
||||
SortIncludes: false
|
||||
SortIncludes: Never
|
||||
UseTab: Always
|
||||
WhitespaceSensitiveMacros:
|
||||
- STRINGIFY
|
||||
|
|
Loading…
Reference in a new issue