@@ -78,7 +78,7 @@ blank_line_before_nested_class_or_def=True
78
78
coalesce_brackets=True
79
79
80
80
# The column limit.
81
- column_limit=120
81
+ column_limit=115
82
82
83
83
# The style for continuation alignment. Possible values are:
84
84
#
@@ -117,7 +117,7 @@ dedent_closing_brackets=False
117
117
disable_ending_comma_heuristic=False
118
118
119
119
# Place each dictionary entry onto its own line.
120
- each_dict_entry_on_separate_line=True
120
+ each_dict_entry_on_separate_line=False
121
121
122
122
# Require multiline dictionary even if it would normally fit on one line.
123
123
# For example:
@@ -277,15 +277,15 @@ split_all_comma_separated_values=False
277
277
278
278
# Split before arguments, but do not split all subexpressions recursively
279
279
# (unless needed).
280
- split_all_top_level_comma_separated_values=False
280
+ split_all_top_level_comma_separated_values=True
281
281
282
282
# Split before arguments if the argument list is terminated by a
283
283
# comma.
284
284
split_arguments_when_comma_terminated=False
285
285
286
286
# Set to True to prefer splitting before '+', '-', '*', '/', '//', or '@'
287
287
# rather than after.
288
- split_before_arithmetic_operator=False
288
+ split_before_arithmetic_operator=True
289
289
290
290
# Set to True to prefer splitting before '&', '|' or '^' rather than
291
291
# after.
@@ -316,7 +316,7 @@ split_before_dot=False
316
316
317
317
# Split after the opening paren which surrounds an expression if it doesn't
318
318
# fit on a single line.
319
- split_before_expression_after_opening_paren=False
319
+ split_before_expression_after_opening_paren=True
320
320
321
321
# If an argument / parameter list is going to be split, then split before
322
322
# the first argument.
@@ -346,7 +346,7 @@ split_before_named_assigns=True
346
346
split_complex_comprehension=True
347
347
348
348
# The penalty for splitting right after the opening bracket.
349
- split_penalty_after_opening_bracket=300
349
+ split_penalty_after_opening_bracket=100
350
350
351
351
# The penalty for splitting the line after a unary operator.
352
352
split_penalty_after_unary_operator=10000
0 commit comments