llvm-project
20 строк · 405.0 Байт
1BasedOnStyle: LLVM
2
3Language: Cpp
4Standard: Cpp11
5
6IndentWidth: 4
7ColumnLimit: 120
8
9AlwaysBreakTemplateDeclarations: true
10AlwaysBreakAfterReturnType: All
11PointerAlignment: Left
12AllowShortIfStatementsOnASingleLine: false
13BreakBeforeBraces: Allman
14
15# Disable formatting options which may break tests.
16SortIncludes: false
17ReflowComments: false
18
19# Indent preprocessor directives
20IndentPPDirectives: AfterHash
21