2024-02-12 14:48:45 +00:00
|
|
|
# See https://www.apertis.org/policies/coding_conventions/#code-formatting
|
2020-02-11 13:28:16 +00:00
|
|
|
BasedOnStyle: GNU
|
|
|
|
AlwaysBreakAfterDefinitionReturnType: All
|
|
|
|
BreakBeforeBinaryOperators: None
|
|
|
|
BinPackParameters: false
|
|
|
|
SpaceAfterCStyleCast: true
|
2021-07-19 19:53:37 +00:00
|
|
|
PointerAlignment: Right
|
2020-02-11 13:28:16 +00:00
|
|
|
# Our column limit is actually 80, but setting that results in clang-format
|
|
|
|
# making a lot of dubious hanging-indent choices; disable it and assume the
|
|
|
|
# developer will line wrap appropriately. clang-format will still check
|
|
|
|
# existing hanging indents.
|
|
|
|
ColumnLimit: 0
|