Fix incorrect value for SortIncludes in .clang-format (#6784)
See https://clang.llvm.org/docs/ClangFormatStyleOptions.html#sortincludes Signed-off-by: Dzmitry Neviadomski <nevack.d@gmail.com>
This commit is contained in:
parent
1be53ac139
commit
f24582ea2b
|
@ -32,7 +32,7 @@ PenaltyBreakBeforeFirstCallParameter: 0
|
|||
PenaltyReturnTypeOnItsOwnLine: 1000
|
||||
PointerAlignment: Left
|
||||
ReflowComments: false
|
||||
SortIncludes: false
|
||||
SortIncludes: Never
|
||||
SpaceAfterCStyleCast: false
|
||||
SpacesBeforeTrailingComments: 1
|
||||
SpacesInAngles: false
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
---
|
||||
DisableFormat: true
|
||||
SortIncludes: false
|
||||
SortIncludes: Never
|
||||
|
|
Loading…
Reference in New Issue