blob: 527b629c382b2b353e6d5a8df09367091f1f5a97 [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
11# Disable formatting options which may break tests.
12SortIncludes: false
Eric Fiseliera473abc2016-12-09 03:18:45 +000013ReflowComments: false
Christopher Di Bella29e72922021-03-31 22:46:28 +000014
Mark de Wever795628c2021-09-15 18:29:22 +020015# libc++'s preferred indentions of preprocessor statements.
16IndentPPDirectives: AfterHash
17
Christopher Di Bella29e72922021-03-31 22:46:28 +000018# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
19ColumnLimit: 120
Eric Fiselierb5d9f442016-11-23 01:18:56 +000020---