I am working on a django project and am trying to run pyflakes on an app in it. I need to exclude the "migrations" directory from pyflakes.
For pep8 I can do
pep8 --exclude=migrations app_name
Is there any similar way for pyflakes?
I couldn't find any proper documentation for pyflakes.
find app_name/* | egrep -v migrations
. It worked with a slight modification. Thanks. – Acroterion