llvm-project/flang-rt/.clang-format

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
815 B
Plaintext
Raw Permalink Normal View History

---
# 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: 6
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
Priority: 5
- Regex: '^"flang/' # Headers shared with Flang
Priority: 4
- Regex: '^"flang-rt/' # Public Flang-RT headers
Priority: 3
- Regex: '^[^/]*$' # Private headers from same library
Priority: 1
- Regex: '.*' # Private headers from sibling libraries
Priority: 2
...
# vim:set filetype=yaml: