Tim Keith | 340a432 | 2018-02-05 18:18:38 | [diff] [blame] | 1 | --- |
| 2 | # See: https://clang.llvm.org/docs/ClangFormatStyleOptions.html |
| 3 | BasedOnStyle: LLVM |
peter klausler | 94c26b6 | 2018-02-06 00:08:46 | [diff] [blame] | 4 | AlignAfterOpenBracket: DontAlign |
Tim Keith | 340a432 | 2018-02-05 18:18:38 | [diff] [blame] | 5 | AlignEscapedNewlines: DontAlign |
Tim Keith | 340a432 | 2018-02-05 18:18:38 | [diff] [blame] | 6 | AlignConsecutiveAssignments: false |
| 7 | AlignConsecutiveDeclarations: false |
peter klausler | 94c26b6 | 2018-02-06 00:08:46 | [diff] [blame] | 8 | AlignOperands: false |
Tim Keith | 340a432 | 2018-02-05 18:18:38 | [diff] [blame] | 9 | AlignTrailingComments: false |
Tim Keith | 6c772ac | 2018-04-12 19:23:20 | [diff] [blame] | 10 | IncludeCategories: |
| 11 | - Regex: '^<' |
| 12 | Priority: 4 |
| 13 | - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 14 | Priority: 3 |
David Truby | 65b62f9 | 2020-01-27 20:57:59 | [diff] [blame] | 15 | - Regex: '^"(flang|\.\.)/' |
Tim Keith | 6c772ac | 2018-04-12 19:23:20 | [diff] [blame] | 16 | Priority: 2 |
| 17 | - Regex: '.*' |
| 18 | Priority: 1 |
Tim Keith | 340a432 | 2018-02-05 18:18:38 | [diff] [blame] | 19 | ... |
| 20 | |
| 21 | # vim:set filetype=yaml: |