# Use the Google style in this project.
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

# Rules for includes
# IncludeBlocks: IBS_Regroup # Requires clang-format 6.0+
# Ordering of includes, higher priority lower in list
IncludeCategories:
- Regex: '^\"unit/'
  Priority: 5999
- Regex: '^\"'
  Priority: 4000
- Regex: '^<.*/.*'
  Priority: 2000
- Regex: '^<[^\/.]*>'
  Priority: 1000
- Regex: '^<.*.h>'
  Priority: 500
