-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.style.yapf
119 lines (60 loc) · 2.16 KB
/
.style.yapf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[style]
spaces_before_comment = 2
blank_lines_around_top_level_definition = 1
column_limit = 130
align_closing_bracket_with_visual_indent = false
allow_multiline_lambdas = false
allow_multiline_dictionary_keys = false
allow_split_before_default_or_named_assigns = false
allow_split_before_dict_value = false
arithmetic_precedence_indication = false
blank_line_before_nested_class_or_def = false
blank_line_before_class_docstring = false
blank_line_before_module_docstring = false
coalesce_brackets = false
continuation_align_style = SPACE
continuation_indent_width = 4
dedent_closing_brackets = true
indent_closing_brackets = true
disable_ending_comma_heuristic = false
each_dict_entry_on_separate_line = true
force_multiline_dict = true
i18n_comment = #\..
i18n_function_call = N_,_
indent_dictionary_value = true
indent_width = 4
indent_blank_lines = false
join_multiple_lines = true
no_spaces_around_selected_binary_operators = true
space_between_ending_comma_and_closing_bracket = false
space_inside_brackets = false
spaces_around_power_operator = false
spaces_around_default_or_named_assign = false
spaces_around_dict_delimiters = false
spaces_around_list_delimiters = false
spaces_around_subscript_colon = false
spaces_around_tuple_delimiters = false
split_arguments_when_comma_terminated = true
split_all_comma_separated_values = false
split_all_top_level_comma_separated_values = false
split_before_arithmetic_operator = true
split_before_bitwise_operator = true
split_before_closing_bracket = true
split_before_dict_set_generator = true
split_before_dot = true
split_before_expression_after_opening_paren = true
split_before_first_argument = true
split_before_logical_operator = true
split_before_named_assigns = true
split_complex_comprehension = true
split_penalty_after_opening_bracket = 300
split_penalty_after_unary_operator = 10000
split_penalty_arithmetic_operator = 300
split_penalty_before_if_expr = 0
split_penalty_bitwise_operator = 300
split_penalty_comprehension = 2100
split_penalty_excess_character = 7000
split_penalty_for_added_line_split = 30
split_penalty_import_names = 0
split_penalty_logical_operator = 300
use_tabs = false