Skip to content
  • Florian Müllner's avatar
    style: Stop using braces for single-line arrow functions · 14d7897a
    Florian Müllner authored and Georges Basile Stavracas Neto's avatar Georges Basile Stavracas Neto committed
    Braces are optional for single-line arrow functions, but there's a
    subtle difference:
    Without braces, the expression is implicitly used as return value; with
    braces, the function returns nothing unless there's an explicit return.
    
    We currently reflect that in our style by only omitting braces when the
    function is expected to have a return value, but that's not very obvious,
    not an important differentiation to make, and not easy to express in an
    automatic rule.
    
    So just omit braces consistently as mandated by gjs' coding style.
    
    !608
    14d7897a