-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (47 loc) · 950 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
54
55
## pytest + coverage
[tool:pytest]
cache_dir = var/.pytest_cache
console_output_style = classic
# ignore all DeprecationWarnings
filterwarnings =
ignore:.*:DeprecationWarning
markers =
integration
[coverage:run]
data_file = var/.coverage
omit =
*/test/*
*/version.py
*/__main__.py
## mypy
[mypy]
ignore_missing_imports=True
check_untyped_defs=True
disallow_untyped_defs=True
no_implicit_optional=True
cache_dir=var/.mypy_cache
[mypy-alps-registry.test.*]
ignore_errors=True
## pylint
[MASTER]
ignore=test
max-line-length=90
min-public-methods=1
load-plugins=pylint.extensions.mccabe
[DESIGN]
max-complexity=6
[MESSAGES CONTROL]
disable=
invalid-name,
arguments-differ,
bad-continuation,
logging-format-interpolation,
logging-fstring-interpolation,
fixme,
too-many-instance-attributes,
no-value-for-parameter
[REPORTS]
reports=no
[OPTIONS]
known-standard-library=dataclasses
ignored-modules=pydantic, pydantic.fields