Skip to content

Commit d5604d6

Browse files
committed
Updated files with git_helper
1 parent f48e036 commit d5604d6

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.style.yapf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ blank_line_before_nested_class_or_def=True
7878
coalesce_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
117117
disable_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.
284284
split_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
346346
split_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.
352352
split_penalty_after_unary_operator=10000

lint_roller.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,9 @@ if [ -z "$(git status --porcelain --untracked-files=no)" ] || [ "$1" == "-f" ];
1717

1818
autopep8 --in-place --select "$errors" -a --recursive domdf_python_tools/
1919
autopep8 --in-place --select "$belligerent" -a -a -a -a -a --recursive domdf_python_tools/
20-
>&2 flake8 --select "$errors$belligerent" domdf_python_tools/
21-
2220

2321
autopep8 --in-place --select "$errors" -a --recursive tests/
2422
autopep8 --in-place --select "$belligerent" -a -a -a -a -a --recursive tests/
25-
>&2 flake8 --select "$warnings" tests/
26-
2723

2824
echo "Running flake8"
2925

0 commit comments

Comments
 (0)