Style Guide

    • Open braces on same line, unless you need to wrap.
    • If a list of things is longer than 2, put each item on its own line and exercise the ability to put an extra comma at the end.
    • Line length: aim for 100; use common sense.
    • If x is callable, and x's return type is type, then should be TitleCase.
    • If x is otherwise callable, then x should be camelCase.
    • Otherwise, x should be .