blob: bef1d9d803366c8ea4b1d99a8ce3301c8f0b8271 [file] [log] [blame]
Eric Fiseliere93265a2016-11-15 20:21:30 +00001BasedOnStyle: LLVM
Eric Fiselierb5d9f442016-11-23 01:18:56 +00002
3---
4Language: Cpp
Eric Fiselierf8d4a132017-04-15 02:45:43 +00005Standard: Cpp03
Eric Fiselierb5d9f442016-11-23 01:18:56 +00006
7AlwaysBreakTemplateDeclarations: true
Saleem Abdulrasool2f31a162017-01-03 04:23:52 +00008PointerAlignment: Left
Eric Fiselier1500ba72016-12-09 03:17:25 +00009
10# Disable formatting options which may break tests.
11SortIncludes: false
Eric Fiseliera473abc2016-12-09 03:18:45 +000012ReflowComments: false
Christopher Di Bella29e72922021-03-31 22:46:28 +000013
14# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
15ColumnLimit: 120
16
17# These aren't covered by the LLVM Style Guide
18BreakBeforeConceptDeclarations: true
19IndentRequires: false
Eric Fiselierb5d9f442016-11-23 01:18:56 +000020---