forked from pyslackers/sir-bot-a-lot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
43 lines (38 loc) · 896 Bytes
/
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
[metadata]
description-file = README.rst
[tool:pytest]
addopts = --verbose --cov=sirbot/ tests/ --cov-report term-missing
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
warning-is-error = 1
[aliases]
test=pytest
doc=build_sphinx
[style]
align_closing_bracket_with_visual_indent = true
based_on_style = chromium
blank_line_before_nested_class_or_def = true
coalesce_brackets = false
column_limit = 120
continuation_indent_width = 4
dedent_closing_brackets = true
indent_dictionary_value = true
indent_width = 4
join_multiple_lines = false
spaces_before_comment = 1
space_between_ending_comma_and_closing_bracket = false
split_arguments_when_comma_terminated = true
split_before_logical_operator = true
split_before_first_argument = true
[flake8]
ignore = E203
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.tox
max-complexity = 10