1# See https://wiki.apertis.org/Guidelines/Coding_conventions#Code_formatting
2BasedOnStyle: GNU
3AlwaysBreakAfterDefinitionReturnType: All
4BreakBeforeBinaryOperators: None
5BinPackParameters: false
6SpaceAfterCStyleCast: true
7# Our column limit is actually 80, but setting that results in clang-format
8# making a lot of dubious hanging-indent choices; disable it and assume the
9# developer will line wrap appropriately. clang-format will still check
10# existing hanging indents.
11ColumnLimit: 0
12