---
Language: Cpp
BasedOnStyle: Google

# Some folks prefer to write "int& foo" while others prefer "int &foo".  The
# Google Style Guide only asks for consistency within a project, we chose
# "int& foo" for this project:
DerivePointerAlignment: false
PointerAlignment: Left

# The Google Style Guide only asks for consistency w.r.t. "east const" vs.
# "const west" alignment of cv-qualifiers. In this project we use "east const".
QualifierAlignment: Left


ColumnLimit: 120

# Format raw string literals with a `pb` or `protos` tag as protos.
RawStringFormats:
  - Language: TextProto
    Delimiters:
      - 'pb'
      - 'protos'
    BasedOnStyle: Google

CommentPragmas: '(@copydoc|@copybrief|@see|@overload|@snippet)'
---
Language:       Proto
BasedOnStyle:  Google
...
