You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: