1 # https://clang.llvm.org/docs/ClangFormatStyleOptions.html 2 # 3 BasedOnStyle: Google 4 AccessModifierOffset: -2 5 AllowShortFunctionsOnASingleLine: Inline 6 BreakBeforeTernaryOperators: true 7 ColumnLimit: 100 8 CommentPragmas: NOLINT:.* 9 DerivePointerAlignment: false 10 IndentWidth: 4 11 PointerAlignment: Left 12 SpaceAfterCStyleCast: true 13 TabWidth: 4 14 UseTab: Never 15 PenaltyExcessCharacter: 32 16