I've got this in my manage.py to disable some pylint checks:
#!/usr/bin/python
from django.core.management import execute_manager
try:
# pylint: disable=W0403,F0401
import settings # Assumed to be in the same directory.
and when I run django-lint, I get errors like these:
************* Module libravatar.manage
E: 4: Bad option value 'W0403'
E: 4: Bad option value 'F0401'
Could it be that django-lint has problems recognizing valid pylint options?
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?