yapf v0.30.0 Release Notes

Release Date: 2020-04-23 // about 4 years ago
  • โž• Added

    • Added SPACES_AROUND_LIST_DELIMITERS, SPACES_AROUND_DICT_DELIMITERS, and SPACES_AROUND_TUPLE_DELIMITERS to add spaces after the opening- and before the closing-delimiters for lists, dicts, and tuples.
    • Adds FORCE_MULTILINE_DICT knob to ensure dictionaries always split, even when shorter than the max line length.
    • New knob SPACE_INSIDE_BRACKETS to add spaces inside brackets, braces, and parentheses.
    • New knob SPACES_AROUND_SUBSCRIPT_COLON to add spaces around the subscript / slice operator. ### ๐Ÿ”„ Changed
    • ๐Ÿ’… Renamed "chromium" style to "yapf". Chromium will now use PEP-8 directly.
    • CONTINUATION_ALIGN_STYLE with FIXED or VALIGN-RIGHT now works with space indentation. ### ๐Ÿ›  Fixed
    • Honor a disable directive at the end of a multiline comment.
    • Don't require splitting before comments in a list when SPLIT_ALL_TOP_LEVEL_COMMA_SEPARATED_VALUES is set. The knob is meant for values, not comments, which may be associated with the current line.
    • Don't over-indent a parameter list when not needed. But make sure it is properly indented so that it doesn't collide with the lines afterwards.
    • Don't split between two-word comparison operators: "is not", "not in", etc.