-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
53 lines (47 loc) · 981 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
44
45
46
47
48
49
50
51
52
53
## pytest + coverage
[tool:pytest]
cache_dir = /tmp/.pytest_cache
console_output_style = classic
# ignore all DeprecationWarnings
filterwarnings =
ignore:.*:DeprecationWarning
markers=
integration: integration to other service
[coverage:run]
data_file = /tmp/.coverage
## mypy
[mypy]
ignore_missing_imports=True
check_untyped_defs=True
disallow_untyped_defs=True
no_implicit_optional=True
cache_dir=/tmp/.mypy_cache
## pylint
[MASTER]
max-line-length=80
min-public-methods=1
[MESSAGES CONTROL]
disable=
invalid-name,
duplicate-code,
arguments-differ,
cyclic-import,
cell-var-from-loop,
too-few-public-methods,
bad-continuation,
logging-fstring-interpolation,
logging-format-interpolation,
missing-docstring,
fixme,
too-many-arguments,
too-many-locals,
too-many-instance-attributes,
wrong-import-order,
catching-non-exception,
raising-bad-type,
dangerous-default-value,
[REPORTS]
reports=no
[isort]
profile=black
src_paths=isort,test