-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.cfg
executable file
·42 lines (35 loc) · 1.08 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
[bumpversion]
current_version = 0.29.1
commit = True
tag = True
[bumpversion:file:setup.py]
[bumpversion:file:kb_python/__init__.py]
[bumpversion:file:README.md]
[bumpversion:file:docs/conf.py]
[bumpversion:file:docs/index.rst]
[flake8]
ignore = E111,E114,E121,E122,E124,E125,E126,E127,E128,E129,E131,E731,E841,W503,W504,E741
exclude = .git,.github,__pycache__,build,dist
max-line-length = 120
statistics = True
[yapf]
based_on_style = pep8
blank_line_before_nested_class_or_def = True
coalesce_brackets = True
column_limit = 80
continuation_indent_width = 4
dedent_closing_brackets = True
each_dict_entry_on_separate_line = True
indent_dictionary_value = True
indent_width = 4
space_between_ending_comma_and_closing_bracket = 0
spaces_before_comment = 2
split_arguments_when_comma_terminated = True
split_before_bitwise_operator = True
split_before_closing_bracket = True
split_before_dict_set_generator = 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