
Some of the default behaviors of yapf do not match the styling preferences of Airship and OpenDev, such as line breaks between dictionary key/value pairs. This change sets the style template for yapf (PEP-8) and sets a few knobs to help remedy problematic behavior. Adds .style.yapf configuration file. Updates styling of existing files using new configuration. Change-Id: Ifea58ef2d7be93f47dd8e4f42cac6aea514b83bd
7 lines
193 B
Plaintext
7 lines
193 B
Plaintext
[style]
|
|
based_on_style = pep8
|
|
allow_split_before_dict_value = false
|
|
blank_line_before_nested_class_or_def = true
|
|
blank_line_before_module_docstring = true
|
|
split_before_logical_operator = false
|