is there a way to exclude specific files from (`my...
# general
a
is there a way to exclude specific files from (
mypy
) typechecking ? if add
--exclude
to my mypy args, or add in my
mypy.ini
they seem to be ignored - im guessing because the filepaths are passed explicitly - im wondering if there is a pants way to prevent some files from being included
1
h
You can set
skip_mypy=True
on the relevant target (or on specific files via
overrides=
)
a
great, thanks!
❤️ 1