You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
559 B
22 lines
559 B
---
|
|
# See: https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
BasedOnStyle: LLVM
|
|
AlignAfterOpenBracket: DontAlign
|
|
AlignEscapedNewlines: DontAlign
|
|
AlignConsecutiveAssignments: false
|
|
AlignConsecutiveDeclarations: false
|
|
AlignOperands: false
|
|
AlignTrailingComments: false
|
|
IncludeCategories:
|
|
- Regex: '^<'
|
|
Priority: 4
|
|
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
Priority: 3
|
|
- Regex: '^"(flang|\.\.)/'
|
|
Priority: 2
|
|
- Regex: '.*'
|
|
Priority: 1
|
|
...
|
|
|
|
# vim:set filetype=yaml:
|