Open fmarier opened 13 years ago
I'm seeing this as well:
# pylint: disable=W0403,C0301
produces:
************* Module foo.manage
E: 5: Bad option value 'W0403'
E: 5: Bad option value 'C0301'
I had the same issue until I used the "-p" option to run pylint's default checks:
-p, --pylint run normal PyLint checks
I've got this in my manage.py to disable some pylint checks:
and when I run django-lint, I get errors like these:
Could it be that django-lint has problems recognizing valid pylint options?