blob: 68f0d65e7ba407245b198ba797a0872c858fad41 [file] [log] [blame]
Eric Fiseliere93265a2016-11-15 20:21:30 +00001BasedOnStyle: LLVM
Eric Fiselierb5d9f442016-11-23 01:18:56 +00002
3---
4Language: Cpp
Mark de Weverdb51a552021-10-28 17:48:27 +02005Standard: c++20
6SpacesInAngles: Leave
Eric Fiselierb5d9f442016-11-23 01:18:56 +00007
8AlwaysBreakTemplateDeclarations: true
Saleem Abdulrasool2f31a162017-01-03 04:23:52 +00009PointerAlignment: Left
Eric Fiselier1500ba72016-12-09 03:17:25 +000010
Nikolas Klauser9c730392022-06-13 17:25:23 +020011
Eric Fiselier1500ba72016-12-09 03:17:25 +000012# Disable formatting options which may break tests.
13SortIncludes: false
Eric Fiseliera473abc2016-12-09 03:18:45 +000014ReflowComments: false
Christopher Di Bella29e72922021-03-31 22:46:28 +000015
Mark de Wever795628c2021-09-15 18:29:22 +020016# libc++'s preferred indentions of preprocessor statements.
17IndentPPDirectives: AfterHash
18
Christopher Di Bella29e72922021-03-31 22:46:28 +000019# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
20ColumnLimit: 120
Eric Fiselierb5d9f442016-11-23 01:18:56 +000021---