blob: 8700fca84d2f3d292c58897f24a4cf0770ed26ca [file] [log] [blame]
Henry Schreiner2db02642021-01-19 19:10:26 -05001---
2# See all possible options and defaults with:
3# clang-format --style=llvm --dump-config
4BasedOnStyle: LLVM
5AccessModifierOffset: -4
6AlignConsecutiveAssignments: true
7AlwaysBreakTemplateDeclarations: Yes
8BinPackArguments: false
9BinPackParameters: false
10BreakBeforeBinaryOperators: All
11BreakConstructorInitializers: BeforeColon
12ColumnLimit: 99
13IndentCaseLabels: true
14IndentPPDirectives: AfterHash
15IndentWidth: 4
16Language: Cpp
17SpaceAfterCStyleCast: true
18# SpaceInEmptyBlock: true # too new
19Standard: Cpp11
20TabWidth: 4
21...