Clang-format: Avoid hardcoded LLVM include-order style

Reported by:	emaste
This commit is contained in:
Conrad Meyer 2020-06-24 23:22:36 +00:00
parent 9e8fd9d8c4
commit a8caa6392e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=362596

View File

@ -134,6 +134,12 @@ IncludeCategories:
- Regex: '^\".*\.h\"'
Priority: 10
SortPriority: 100
# LLVM's header include ordering style is almost the exact opposite of ours.
# Unfortunately, they have hard-coded their preferences into clang-format.
# Clobbering this regular expression to avoid matching prevents non-system
# headers from being forcibly moved to the top of the include list.
# http://llvm.org/docs/CodingStandards.html#include-style
IncludeIsMainRegex: 'BLAH_DONT_MATCH_ANYTHING'
SortIncludes: true
KeepEmptyLinesAtTheStartOfBlocks: true
TypenameMacros: