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