-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
17 lines (15 loc) · 915 Bytes
/
Copy pathmypy.ini
File metadata and controls
17 lines (15 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-----
strict = True # bundles every harsh flag
strict_equality = True # keep this explicit
enable_incomplete_feature = Unpack # PEP 692 (**kwargs)
show_error_codes = True
warn_unused_ignores = True
warn_unreachable = True
# -----------------------------------------------------------
# Silence external untyped-library warnings
# -----------------------------------------------------------
ignore_missing_imports = True # don’t error on missing stubs
follow_imports = silent # suppress the “Skipping analyzing …” *note* :contentReference[oaicite:0]{index=0}
disable_error_code = import-untyped # hide the import-untyped error itself
disallow_any_unimported = False # override strict’s default so the previous
# -----------------------------------------------------------