-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathmypy.ini
More file actions
26 lines (19 loc) · 520 Bytes
/
mypy.ini
File metadata and controls
26 lines (19 loc) · 520 Bytes
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
# Global options:
[mypy]
warn_return_any = True
warn_unused_configs = True
# Ignore errors like
# `Cannot find implementation or library stub for module named 'lxml'`
# https://stackoverflow.com/a/57815124/19166
ignore_missing_imports = True
# Per-module options:
; [mypy-benchmarks]
; disallow_untyped_defs = True
; [mypy-lxml]
; ignore_missing_imports = True
; [mypy-wsgidav.xml_tools]
; warn_return_any = False
; [mypy-mycode.bar]
; warn_return_any = False
; [mypy-somelibrary]
; ignore_missing_imports = True