blob: 782e2b8634a5141690c06568da6e970aafee1876 [file] [log] [blame]
Eric Fiselier7004d662016-11-15 20:21:30 +00001BasedOnStyle: LLVM
Eric Fiselier55b31b4e2016-11-23 01:18:56 +00002
3---
4Language: Cpp
5
6AlwaysBreakTemplateDeclarations: true
Saleem Abdulrasool720fb142017-01-03 04:23:52 +00007AllowShortFunctionsOnASingleLine: Inline
8BreakBeforeBraces: Custom
9BraceWrapping:
10 AfterClass: true
11 AfterFunction: true
12PointerAlignment: Left
Eric Fiselier949e47d2016-12-09 03:17:25 +000013
14# Disable formatting options which may break tests.
15SortIncludes: false
Eric Fiselier217c5d32016-12-09 03:18:45 +000016ReflowComments: false
Eric Fiselier55b31b4e2016-11-23 01:18:56 +000017---