| # Defines the ANGLE style for automatic reformatting. |
| # https://code.google.com/p/angleproject/wiki/CodingStandard |
| # See Clang docs: http://clang.llvm.org/docs/ClangFormatStyleOptions.html |
| # Allow double brackets such as std::vector<std::vector<int>>. |
| # Indent 4 spaces at a time. |
| # Keep lines under 100 columns long. |
| # Always break before braces |
| BreakBeforeBraces: Custom |
| AfterControlStatement: true |
| SplitEmptyFunction: false |
| SplitEmptyNamespace: false |
| # Keeps extern "C" blocks unindented. |
| # Right-align pointers and references |
| # ANGLE likes to align things as much as possible. |
| AlignConsecutiveAssignments: true |
| # Use 2 space negative offset for access modifiers |
| # TODO(jmadill): Decide if we want this on. Doesn't have an "all or none" mode. |
| AllowShortCaseLabelsOnASingleLine: false |
| # Useful for spacing out functions in classes |
| KeepEmptyLinesAtTheStartOfBlocks: true |
| # Indent nested PP directives. |
| IndentPPDirectives: AfterHash |