diff --git a/.gitignore b/.gitignore index 9e2b3a1..2c29832 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ !bcao.py !requirements.txt !.gitignore +mypy.ini * \ No newline at end of file diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..bc1ae88 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,8 @@ +[mypy] +strict = True + +[mypy-mutagen.*] +ignore_missing_imports = True + +[mypy-PIL.*] +ignore_missing_imports = True \ No newline at end of file