-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
setup.cfg
64 lines (48 loc) · 1.68 KB
/
setup.cfg
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
[tool:pytest]
testpaths = tests/
[flake8]
max-line-length = 120
ignore =
D301
E221 # Space before equal sign
E251 # Space after equal sign
exclude =
.git,
venv,
__pycache__,
.pytest_cache,
tensorlayer.egg-info,
build,
dist,
img
[yapf]
based_on_style=google
# The number of columns to use for indentation.
indent_width = 4
# The column limit. (larger than usual)
column_limit=120
# Place each dictionary entry onto its own line.
each_dict_entry_on_separate_line = True
# Put closing brackets on a separate line, dedented, if the bracketed
dedent_closing_brackets=True
# Do not split consecutive brackets. Only relevant when DEDENT_CLOSING_BRACKETS is set
coalesce_brackets = False
# Align closing bracket with visual indentation.
align_closing_bracket_with_visual_indent = False
# Split named assignments onto individual lines.
split_before_named_assigns = False
# If an argument / parameter list is going to be split, then split before the first argument.
split_before_first_argument = True
# Split before arguments if the argument list is terminated by a comma.
split_arguments_when_comma_terminated = False
# Insert a space between the ending comma and closing bracket of a list, etc.
space_between_ending_comma_and_closing_bracket = True
# Join short lines into one line. E.g., single line if statements.
join_multiple_lines = True
# Do not include spaces around selected binary operators.
# Example: 1 + 2 * 3 - 4 / 5 => 1 + 2*3 - 4/5
no_spaces_around_selected_binary_operators = True
# Allow lambdas to be formatted on more than one line.
allow_multiline_lambdas = True
SPLIT_PENALTY_FOR_ADDED_LINE_SPLIT = 10
SPLIT_PENALTY_AFTER_OPENING_BRACKET = 500