summaryrefslogtreecommitdiff
path: root/mypy.ini
blob: 03f507024582d74cc17395eb6e93a4d99f99737e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[mypy]
warn_unused_configs = True
follow_imports = skip
strict = True

exclude = (?x)(
    SSL\.py$
  )

[mypy-OpenSSL.crypto]
warn_return_any = False
disallow_any_expr = False

[mypy-OpenSSL.rand]
warn_return_any = False

[mypy-OpenSSL._util]
warn_return_any = False

[mypy-cryptography.*]
ignore_missing_imports = True

[mypy-cffi.*]
ignore_missing_imports = True