https://github.com/GNOME/glib
Raw File
Tip revision: 45d3b25e40420e13c8cfa6280efbd156f9079c32 authored by Simon McVittie on 05 August 2021, 14:02:24 UTC
tests: Don't run new test from !1904 on FreeBSD CI
Tip revision: 45d3b25
.clang-format
# See https://wiki.apertis.org/Guidelines/Coding_conventions#Code_formatting
BasedOnStyle: GNU
AlwaysBreakAfterDefinitionReturnType: All
BreakBeforeBinaryOperators: None
BinPackParameters: false
SpaceAfterCStyleCast: true
# 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
back to top