-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
setup.cfg
38 lines (32 loc) · 865 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
[unittest]
plugins = nose2.plugins.attrib
[coverage]
always-on = True
coverage = flask_appbuilder
[flake8]
import-order-style = google
max-line-length = 90
exclude = .tox,build,docs,bin,examples,flask_appbuilder/templates,flask_appbuilder/static,venv
ignore = E203,W503,W605
[mypy]
follow_imports=skip
ignore_missing_imports=True
ignore_errors = True
[mypy-flask_appbuilder.validators]
ignore_errors = False
check_untyped_defs = true
disallow_untyped_calls = false
disallow_untyped_defs = true
warn_unused_ignores = false
[mypy-flask_appbuilder.base]
ignore_errors = False
check_untyped_defs = true
disallow_untyped_calls = false
disallow_untyped_defs = true
warn_unused_ignores = false
[mypy-flask_appbuilder.api.convert]
ignore_errors = False
check_untyped_defs = true
disallow_untyped_calls = false
disallow_untyped_defs = true
warn_unused_ignores = false