@@ -78,7 +78,7 @@ blank_line_before_nested_class_or_def=True
7878coalesce_brackets=True
7979
8080# The column limit.
81- column_limit=120
81+ column_limit=115
8282
8383# The style for continuation alignment. Possible values are:
8484#
@@ -117,7 +117,7 @@ dedent_closing_brackets=False
117117disable_ending_comma_heuristic=False
118118
119119# Place each dictionary entry onto its own line.
120- each_dict_entry_on_separate_line=True
120+ each_dict_entry_on_separate_line=False
121121
122122# Require multiline dictionary even if it would normally fit on one line.
123123# For example:
@@ -277,15 +277,15 @@ split_all_comma_separated_values=False
277277
278278# Split before arguments, but do not split all subexpressions recursively
279279# (unless needed).
280- split_all_top_level_comma_separated_values=False
280+ split_all_top_level_comma_separated_values=True
281281
282282# Split before arguments if the argument list is terminated by a
283283# comma.
284284split_arguments_when_comma_terminated=False
285285
286286# Set to True to prefer splitting before '+', '-', '*', '/', '//', or '@'
287287# rather than after.
288- split_before_arithmetic_operator=False
288+ split_before_arithmetic_operator=True
289289
290290# Set to True to prefer splitting before '&', '|' or '^' rather than
291291# after.
@@ -316,7 +316,7 @@ split_before_dot=False
316316
317317# Split after the opening paren which surrounds an expression if it doesn't
318318# fit on a single line.
319- split_before_expression_after_opening_paren=False
319+ split_before_expression_after_opening_paren=True
320320
321321# If an argument / parameter list is going to be split, then split before
322322# the first argument.
@@ -346,7 +346,7 @@ split_before_named_assigns=True
346346split_complex_comprehension=True
347347
348348# The penalty for splitting right after the opening bracket.
349- split_penalty_after_opening_bracket=300
349+ split_penalty_after_opening_bracket=100
350350
351351# The penalty for splitting the line after a unary operator.
352352split_penalty_after_unary_operator=10000
0 commit comments