Reputation: 13376
Pylint docs states that the --ignore
flag can be used multiple times. However when running pylint with the following args:
pylint --ignore=migrations --ignore=south_migrations
Only south_migrations
is being ignored.
Is there a way to ignore multiple files / directories in pylint 1.4?
Upvotes: 1
Views: 410
Reputation: 13376
The documentation is indeed wrong, however there is a workaround:
pylint --ignore=migrations,south_migrations
Upvotes: 2