xref: /freebsd/.clang-format (revision cb08bb04)
1BasedOnStyle: LLVM
2
3---
4Language: Cpp
5
6AlwaysBreakTemplateDeclarations: true
7AllowShortFunctionsOnASingleLine: Inline
8BreakBeforeBraces: Custom
9BraceWrapping:
10  AfterClass: true
11  AfterFunction: true
12PointerAlignment: Left
13
14# Disable formatting options which may break tests.
15SortIncludes: false
16ReflowComments: false
17---
18