diff --git a/.gitignore b/.gitignore index c3ee062..1501eb7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ .DS_Store *.blend* +/env/ +/.mypy_cache/ diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..63494ea --- /dev/null +++ b/mypy.ini @@ -0,0 +1,13 @@ +[mypy] +ignore_missing_imports = True + +check_untyped_defs = True + +disallow_any_explicit = True +disallow_any_generics = True +# disallow_subclassing_any = True +disallow_untyped_decorators = True + +warn_incomplete_stub = True +warn_redundant_casts = True +warn_unused_ignores = True