Skip to content

Instantly share code, notes, and snippets.

@Sarctiann
Last active September 12, 2023 14:57
Show Gist options
  • Save Sarctiann/84f269ae1c544abc7533006cdfb60795 to your computer and use it in GitHub Desktop.
Save Sarctiann/84f269ae1c544abc7533006cdfb60795 to your computer and use it in GitHub Desktop.
mypy configuration to avoid third party warns and errors
[mypy]
# follow_imports = 'skip'
# follow_imports_for_stubs = True
ignore_missing_imports = True
disallow_untyped_calls = False
disallow_untyped_decorators = False
disable_error_code = attr-defined, name-defined, no-any-return
warn_unused_ignores = True
strict = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment