mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 14:50:26 +00:00
6f3bce911e
IndentRequires is apparently breaking CI because it uses an older clang-format.
Partially rolls back 2e3a78b8ca
.
17 lines
350 B
YAML
17 lines
350 B
YAML
BasedOnStyle: LLVM
|
|
|
|
---
|
|
Language: Cpp
|
|
Standard: Cpp03
|
|
|
|
AlwaysBreakTemplateDeclarations: true
|
|
PointerAlignment: Left
|
|
|
|
# Disable formatting options which may break tests.
|
|
SortIncludes: false
|
|
ReflowComments: false
|
|
|
|
# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
|
|
ColumnLimit: 120
|
|
---
|