python - Excluding directory -


i working on django project , trying run pyflakes on app in it. need exclude "migrations" directory pyflakes.

for pep8 can

pep8 --exclude=migrations app_name 

is there similar way pyflakes?

i couldn't find proper documentation pyflakes.

pyflakes supports list of files or directories; no "exclude" option

here's equivalent:

pep8 `find app_name | egrep -v migrations` 

pyflakes manpage: http://man.cx/?page=pyflakes&do%5bgo%5d=go


Comments

Popular posts from this blog

google api - Incomplete response from Gmail API threads.list -

Installing Android SQLite Asset Helper -

Qt Creator - Searching files with Locator including folder -