blob: bc75cdc9d7c0b4701dc7775dccd27ea9d7433033 [file] [log] [blame]
Corentin Walleza351ce92017-11-24 11:44:47 -05001BasedOnStyle: Chromium
2Standard: Cpp11
3
4AllowShortFunctionsOnASingleLine: false
5
6ColumnLimit: 100
7
8# Use 4 space indents
9IndentWidth: 4
10ObjCBlockIndentWidth: 4
11AccessModifierOffset: -2
12
13# Nested namespaces are C++17, fake them by compacting namespaces for now.
14CompactNamespaces: true
15
16# This should result in only one indentation level with compacted namespaces
17NamespaceIndentation: All
18
19# Use this option once clang-format 6 is out.
20IndentPPDirectives: AfterHash