-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (56 loc) · 1.19 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
[flake8]
max-line-length = 100
exclude =
.git,
.venv,
__pycache__,
requirements,
docs,
k8s,
scripts,
node_modules/,
tests/smoke
ignore = W504
[coverage:run]
branch = True
omit =
.venv/*,
tests/*,
docs,
k8s,
requirements,
scripts,
node_modules/
[tool:pytest]
testpaths=tests
python_files=test_*.py
python_functions=test_*
python_classes = Test* *Tests
norecursedirs = .venv .git .node_modules tests/smoke
addopts = -vv -p no:warnings
[mypy]
ignore_missing_imports = True
show_error_context = True
[yapf]
based_on_style = pep8
column_limit = 100
allow_split_before_dict_value = False
blank_line_before_nested_class_or_def = False
coalesce_brackets = False
dedent_closing_brackets = True
each_dict_entry_on_separate_line = True
split_before_named_assigns = False
split_complex_comprehension = True
split_before_logical_operator = False
[isort]
atomic=True
line_length=100
multi_line_output=5
balanced_wrapping=True
known_frameworks=confluent_kafka_helpers,eventsourcing_helpers,fyndiq_helpers
known_localfolder=app
known_test=tests
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,FRAMEWORKS,LOCALFOLDER,TEST
not_skip=__init__.py
virtual_env=.venv
skip=.venv