Skip to content

Improve RETURN statement formatting #79

Description

@nene

Currently when RETURN statement contains AND, it gets formatted as:

RETURN is_valid_modular_roof_instance_properties(properties)
AND is_valid_modular_roof_prototype_properties(properties);

Instead the contents of RETURN should be indented:

RETURN
  is_valid_modular_roof_instance_properties(properties)
  AND is_valid_modular_roof_prototype_properties(properties);

Or maybe it should even be wrapped in extra parentheses:

RETURN (
  is_valid_modular_roof_instance_properties(properties)
  AND is_valid_modular_roof_prototype_properties(properties)
);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions