forked from CZ-NIC/django-eidas-specific-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (30 loc) · 813 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
[isort]
line_length = 120
default_section = THIRDPARTY
known_first_party = eidas_node
combine_as_imports = True
multi_line_output = 0
[flake8]
max-line-length = 120
max_complexity = 15
[mypy]
check_untyped_defs = True
[mypy-appsettings.*]
ignore_missing_imports = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-freezegun.*]
ignore_missing_imports = True
[mypy-lxml.*]
ignore_missing_imports = True
[mypy-pyignite.*]
ignore_missing_imports = True
[mypy-xmlsec.*]
ignore_missing_imports = True
[pydocstyle]
match_dir = ^(?!tests).*
add_ignore = D105,D107
# D105: Missing docstring in magic method
# They have a well-defined meaning, no need to duplicate their docstring.
# D107: Missing docstring in __init__
# Arguments of __init__ method should be described in the class docstring.