microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
.clang-format
22lines · modecode
| 1 | --- |
| 2 | # Defaults for all languages. |
| 3 | BasedOnStyle: Google |
| 4 | |
| 5 | # Setting ColumnLimit to 0 so developer choices about where to break lines are maintained. |
| 6 | # Developers are responsible for adhering to the 120 character maximum. |
| 7 | ColumnLimit: 0 |
| 8 | SortIncludes: false |
| 9 | DerivePointerAlignment: false |
| 10 | |
| 11 | # if you want to customize when working locally see https://clang.llvm.org/docs/ClangFormatStyleOptions.html for options. |
| 12 | # See ReformatSource.ps1 for a script to update all source according to the current options in this file. |
| 13 | # e.g. customizations to use Allman bracing and more indenting. |
| 14 | # AccessModifierOffset: -2 |
| 15 | # BreakBeforeBraces: Allman |
| 16 | # CompactNamespaces: false |
| 17 | # IndentCaseLabels: true |
| 18 | # IndentWidth: 4 |
| 19 | # NamespaceIndentation: All |
| 20 | |
| 21 | ... |
| 22 | |
| 23 | |