https://github.com/aiidateam/aiida_core
Raw File
Tip revision: dd6e7a6c59e50de3c5be379c0f1ad9ce90cd0d16 authored by Pranjal Mishra on 11 January 2021, 14:35:26 UTC
Docs: Minor documentation fixes (#4643)
Tip revision: dd6e7a6
mypy.ini
# Global options

[mypy]

check_untyped_defs = True
scripts_are_modules = True
warn_unused_ignores = True
warn_redundant_casts = True

; Strictness settings
; disallow_any_unimported = True
; disallow_any_expr = True
; disallow_any_decorated = True
; disallow_any_explicit = True
; disallow_any_generics = True
; disallow_subclassing_any = True

; disallow_untyped_calls = True
; disallow_untyped_defs = True
; disallow_incomplete_defs = True
; disallow_untyped_decorators = True

; no_implicit_optional = True
; no_strict_optional = False

; Enable all warnings
; warn_return_any = True
; warn_unreachable = True

; allow_untyped_globals = False
; strict_equality = True

[mypy-aiida.*]
; can only follow these imports when more of the code is typed
follow_imports = skip

[mypy-tests.*]
check_untyped_defs = False

[mypy-django.*]
ignore_missing_imports = True

[mypy-numpy.*]
ignore_missing_imports = True

[mypy-plumpy.*]
ignore_missing_imports = True

[mypy-scipy.*]
ignore_missing_imports = True

[mypy-sqlalchemy.*]
ignore_missing_imports = True

[mypy-tqdm.*]
ignore_missing_imports = True
back to top