├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .landscape.yaml ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.rst ├── SECURITY.md ├── custom_dict.txt ├── pylint_django ├── LICENSE ├── __init__.py ├── __pkginfo__.py ├── augmentations │ └── __init__.py ├── checkers │ ├── __init__.py │ ├── auth_user.py │ ├── django_installed.py │ ├── foreign_key_strings.py │ ├── forms.py │ ├── json_response.py │ ├── migrations.py │ └── models.py ├── compat.py ├── plugin.py ├── tests │ ├── __init__.py │ ├── input │ │ ├── __init__.py │ │ ├── external_django_tables2_noerror_meta_class.py │ │ ├── external_drf_noerror_serializer.py │ │ ├── external_drf_noerror_serializer.rc │ │ ├── external_factory_boy_noerror.py │ │ ├── external_factory_boy_noerror.rc │ │ ├── external_model_utils_noerror_override_manager.py │ │ ├── external_model_utils_noerror_override_manager.rc │ │ ├── external_psycopg2_noerror_postgres_fields.py │ │ ├── external_psycopg2_noerror_postgres_fields.rc │ │ ├── external_psycopg3_noerror_postgres_fields.py │ │ ├── external_psycopg3_noerror_postgres_fields.rc │ │ ├── external_tastypie_noerror_foreign_key.py │ │ ├── func_hard_coded_auth_user.py │ │ ├── func_hard_coded_auth_user.txt │ │ ├── func_json_response.py │ │ ├── func_json_response.txt │ │ ├── func_model_does_not_use_unicode_py33.py │ │ ├── func_model_does_not_use_unicode_py33.txt │ │ ├── func_model_no_explicit_unicode_str_compat.py │ │ ├── func_model_no_explicit_unicode_str_compat.txt │ │ ├── func_modelform_exclude.py │ │ ├── func_modelform_exclude.txt │ │ ├── func_noerror_classviews.py │ │ ├── func_noerror_duplicate_except_doesnotexist.py │ │ ├── func_noerror_factory_post_generation.py │ │ ├── func_noerror_foreign_key_attributes.py │ │ ├── func_noerror_foreign_key_ids.py │ │ ├── func_noerror_foreign_key_key_cls_unbound.py │ │ ├── func_noerror_foreign_key_package.py │ │ ├── func_noerror_foreign_key_sets.py │ │ ├── func_noerror_foreignkeys.py │ │ ├── func_noerror_form_fields.py │ │ ├── func_noerror_forms_py33.py │ │ ├── func_noerror_formview_ancestors.py │ │ ├── func_noerror_generic_foreign_key.py │ │ ├── func_noerror_gettext_lazy_format.py │ │ ├── func_noerror_ignore_meta_subclass.py │ │ ├── func_noerror_import_q.py │ │ ├── func_noerror_issue_46.py │ │ ├── func_noerror_managers_return_querysets.py │ │ ├── func_noerror_manytomanyfield.py │ │ ├── func_noerror_model_fields.py │ │ ├── func_noerror_model_methods.py │ │ ├── func_noerror_model_objects.py │ │ ├── func_noerror_model_unicode_callable.py │ │ ├── func_noerror_model_unicode_lambda.py │ │ ├── func_noerror_models_py33.py │ │ ├── func_noerror_protected_meta_access.py │ │ ├── func_noerror_string_foreignkey.py │ │ ├── func_noerror_style_members.py │ │ ├── func_noerror_test_wsgi_request.py │ │ ├── func_noerror_ugettext_lazy_format.py │ │ ├── func_noerror_unicode_py2_compatible.py │ │ ├── func_noerror_urls.py │ │ ├── func_noerror_uuid_field.py │ │ ├── func_noerror_views.py │ │ ├── func_noerror_wsgi.py │ │ ├── func_unused_arguments.py │ │ ├── func_unused_arguments.txt │ │ ├── migrations │ │ │ ├── 0001_noerror_initial.py │ │ │ ├── 0002_new_column.py │ │ │ ├── 0002_new_column.txt │ │ │ ├── 0003_without_backwards.py │ │ │ ├── 0003_without_backwards.txt │ │ │ ├── 0004_noerror_with_backwards.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── author.py │ │ │ └── func_noerror_foreign_key_key_cls_unbound_in_same_package.py │ │ └── test_app │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── models.py │ ├── settings.py │ ├── test_django_not_installed.sh │ ├── test_func.py │ └── testing_pylint.rc ├── transforms │ ├── __init__.py │ ├── fields.py │ ├── foreignkey.py │ └── transforms │ │ ├── __init__.py │ │ ├── django_db_models_fields_files.py │ │ └── django_utils_translation.py └── utils.py ├── pyproject.toml ├── scripts ├── build.sh └── test.sh └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | pylint_django/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/SECURITY.md -------------------------------------------------------------------------------- /custom_dict.txt: -------------------------------------------------------------------------------- 1 | astroid 2 | -------------------------------------------------------------------------------- /pylint_django/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/LICENSE -------------------------------------------------------------------------------- /pylint_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/__init__.py -------------------------------------------------------------------------------- /pylint_django/__pkginfo__.py: -------------------------------------------------------------------------------- 1 | """pkginfo.""" 2 | 3 | BASE_ID = 51 4 | -------------------------------------------------------------------------------- /pylint_django/augmentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/augmentations/__init__.py -------------------------------------------------------------------------------- /pylint_django/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/__init__.py -------------------------------------------------------------------------------- /pylint_django/checkers/auth_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/auth_user.py -------------------------------------------------------------------------------- /pylint_django/checkers/django_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/django_installed.py -------------------------------------------------------------------------------- /pylint_django/checkers/foreign_key_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/foreign_key_strings.py -------------------------------------------------------------------------------- /pylint_django/checkers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/forms.py -------------------------------------------------------------------------------- /pylint_django/checkers/json_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/json_response.py -------------------------------------------------------------------------------- /pylint_django/checkers/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/migrations.py -------------------------------------------------------------------------------- /pylint_django/checkers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/checkers/models.py -------------------------------------------------------------------------------- /pylint_django/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/compat.py -------------------------------------------------------------------------------- /pylint_django/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/plugin.py -------------------------------------------------------------------------------- /pylint_django/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylint_django/tests/input/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_django_tables2_noerror_meta_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_django_tables2_noerror_meta_class.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_drf_noerror_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_drf_noerror_serializer.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_drf_noerror_serializer.rc: -------------------------------------------------------------------------------- 1 | [testoptions] 2 | requires = rest_framework 3 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_factory_boy_noerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_factory_boy_noerror.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_factory_boy_noerror.rc: -------------------------------------------------------------------------------- 1 | [testoptions] 2 | requires = factory 3 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_model_utils_noerror_override_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_model_utils_noerror_override_manager.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_model_utils_noerror_override_manager.rc: -------------------------------------------------------------------------------- 1 | [testoptions] 2 | requires = model_utils 3 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.rc: -------------------------------------------------------------------------------- 1 | [testoptions] 2 | requires = psycopg2 3 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_psycopg3_noerror_postgres_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_psycopg3_noerror_postgres_fields.py -------------------------------------------------------------------------------- /pylint_django/tests/input/external_psycopg3_noerror_postgres_fields.rc: -------------------------------------------------------------------------------- 1 | [testoptions] 2 | requires = psycopg3 3 | -------------------------------------------------------------------------------- /pylint_django/tests/input/external_tastypie_noerror_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/external_tastypie_noerror_foreign_key.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_hard_coded_auth_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_hard_coded_auth_user.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_hard_coded_auth_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_hard_coded_auth_user.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/func_json_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_json_response.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_json_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_json_response.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/func_model_does_not_use_unicode_py33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_model_does_not_use_unicode_py33.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_model_does_not_use_unicode_py33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_model_does_not_use_unicode_py33.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/func_modelform_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_modelform_exclude.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_modelform_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_modelform_exclude.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_classviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_classviews.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_duplicate_except_doesnotexist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_duplicate_except_doesnotexist.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_factory_post_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_factory_post_generation.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreign_key_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreign_key_attributes.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreign_key_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreign_key_ids.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreign_key_key_cls_unbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreign_key_key_cls_unbound.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreign_key_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreign_key_package.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreign_key_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreign_key_sets.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_foreignkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_foreignkeys.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_form_fields.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_forms_py33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_forms_py33.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_formview_ancestors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_formview_ancestors.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_generic_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_generic_foreign_key.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_gettext_lazy_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_gettext_lazy_format.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_ignore_meta_subclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_ignore_meta_subclass.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_import_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_import_q.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_issue_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_issue_46.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_managers_return_querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_managers_return_querysets.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_manytomanyfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_manytomanyfield.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_model_fields.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_model_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_model_methods.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_model_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_model_objects.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_model_unicode_callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_model_unicode_callable.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_model_unicode_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_model_unicode_lambda.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_models_py33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_models_py33.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_protected_meta_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_protected_meta_access.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_string_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_string_foreignkey.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_style_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_style_members.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_test_wsgi_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_test_wsgi_request.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_ugettext_lazy_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_ugettext_lazy_format.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_unicode_py2_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_unicode_py2_compatible.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_urls.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_uuid_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_uuid_field.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_views.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_noerror_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_noerror_wsgi.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_unused_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_unused_arguments.py -------------------------------------------------------------------------------- /pylint_django/tests/input/func_unused_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/func_unused_arguments.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0001_noerror_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0001_noerror_initial.py -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0002_new_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0002_new_column.py -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0002_new_column.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0002_new_column.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0003_without_backwards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0003_without_backwards.py -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0003_without_backwards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0003_without_backwards.txt -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/0004_noerror_with_backwards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/migrations/0004_noerror_with_backwards.py -------------------------------------------------------------------------------- /pylint_django/tests/input/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylint_django/tests/input/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/models/__init__.py -------------------------------------------------------------------------------- /pylint_django/tests/input/models/author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/models/author.py -------------------------------------------------------------------------------- /pylint_django/tests/input/models/func_noerror_foreign_key_key_cls_unbound_in_same_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/models/func_noerror_foreign_key_key_cls_unbound_in_same_package.py -------------------------------------------------------------------------------- /pylint_django/tests/input/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylint_django/tests/input/test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/test_app/apps.py -------------------------------------------------------------------------------- /pylint_django/tests/input/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/input/test_app/models.py -------------------------------------------------------------------------------- /pylint_django/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/settings.py -------------------------------------------------------------------------------- /pylint_django/tests/test_django_not_installed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/test_django_not_installed.sh -------------------------------------------------------------------------------- /pylint_django/tests/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/test_func.py -------------------------------------------------------------------------------- /pylint_django/tests/testing_pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/tests/testing_pylint.rc -------------------------------------------------------------------------------- /pylint_django/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/transforms/__init__.py -------------------------------------------------------------------------------- /pylint_django/transforms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/transforms/fields.py -------------------------------------------------------------------------------- /pylint_django/transforms/foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/transforms/foreignkey.py -------------------------------------------------------------------------------- /pylint_django/transforms/transforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylint_django/transforms/transforms/django_db_models_fields_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/transforms/transforms/django_db_models_fields_files.py -------------------------------------------------------------------------------- /pylint_django/transforms/transforms/django_utils_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/transforms/transforms/django_utils_translation.py -------------------------------------------------------------------------------- /pylint_django/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pylint_django/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylint-dev/pylint-django/HEAD/tox.ini --------------------------------------------------------------------------------