mypyのセッティング項目
きびしめの設定
code:mypy.ini
python_version = 3.6
follow_imports = normal
# 型のないimportを認めない(follow_importsとの兼ね合いが不明)
disallow_any_unimported = True
# expr = 式
disallow_any_expr = True
disallow_any_decorated = True
# explicit = 明示的な
disallow_any_explicit = True
disallow_any_generics = True
disallow_subclassing_any = True
# 型注釈付きの関数から型注釈なしの関数を呼び出すこと認めない
disallow_untyped_calls = True
# 型注釈なし関数の定義を認めない
disallow_untyped_defs = True
# 不完全な型注釈を使った関数定義を認めない
disallow_incomplete_defs = True
# 型注釈なしで関数の内部を型チェックする
check_untyped_defs = True
disallow_untyped_decorators = True
warn_unused_ignores = True
warn_no_return = True
warn_return_any = True
warn_unused_configs = True
mypy_path = ./stubs