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