.style.yapf 647 B

12345678910111213141516171819
  1. [style]
  2. based_on_style = pep8
  3. indent_width = 2
  4. column_limit = 200
  5. allow_split_before_dict_value = False
  6. dedent_closing_brackets = True
  7. split_before_first_argument = False
  8. split_complex_comprehension = False
  9. continuation_indent_width = 2
  10. indent_dictionary_value = True
  11. allow_multiline_dictionary_keys = True
  12. each_dict_entry_on_separate_line = False
  13. allow_multiline_lambdas = True
  14. blank_line_before_nested_class_or_def = False
  15. arithmetic_precedence_indication = True
  16. no_spaces_around_selected_binary_operators = "*,/"
  17. coalesce_brackets = True
  18. space_between_ending_comma_and_closing_bracket = False
  19. split_before_expression_after_opening_paren = False