-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.cfg
70 lines (52 loc) · 1003 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[aliases]
test = pytest
[zest.releaser]
create-wheel = yes
[isort]
lines_after_imports=2
force_single_line=true
line_length=110
not_skip=__init__.py
skip_glob=*.pyi
[flake8]
max_line_length = 120
no-accept-encodings = True
exclude = guillotina/cookiecutter
ignore =
E302
W391
E701
W504
F901
E252
W503
E203
BLK100
F541
[mypy]
namespace_packages=True
plugins=mypy_zope:plugin
mypy_path=stubs
exclude = guillotina/cookiecutter
[mypy-pytest]
ignore_missing_imports = True
[mypy-IPython]
ignore_missing_imports = True
[mypy-traitlets]
ignore_missing_imports = True
[mypy-pytest_docker_fixtures]
ignore_missing_imports = True
[mypy-openapi_spec_validator]
ignore_missing_imports = True
[mypy-prometheus_client.*]
ignore_missing_imports = True
[mypy-asyncmock.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-emcache.*]
ignore_missing_imports = True
[mypy-jwt.*]
ignore_missing_imports = True
[mypy-jinja2.*]
ignore_missing_imports = True