├── .bumpversion.cfg ├── .coveragerc ├── .flake8 ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flake8_django ├── __init__.py ├── checker.py └── checkers │ ├── __init__.py │ ├── base_model_checker.py │ ├── checker.py │ ├── decorator.py │ ├── issue.py │ ├── model_content_order.py │ ├── model_dunder_str.py │ ├── model_fields.py │ ├── model_form.py │ ├── model_meta.py │ ├── render.py │ └── utils.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── fixtures ├── abstract_model_dunder_str.py ├── abstract_model_without_dunder_str.py ├── model_abstract_with_meta_without_verbose_name.py ├── model_content_order.py ├── model_dunder_str.py ├── model_form_exclude.py ├── model_form_fields.py ├── model_form_fields_all.py ├── model_inherited_from_abstract_model.py ├── model_with_meta_without_verbose_name.py ├── model_without_dunder_str.py └── model_without_meta.py ├── test_decorator.py ├── test_model_content_order.py ├── test_model_dunder_str.py ├── test_model_fields.py ├── test_model_form.py ├── test_model_meta.py ├── test_render.py └── utils.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit=venv/*,setup.py 3 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/README.md -------------------------------------------------------------------------------- /flake8_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/__init__.py -------------------------------------------------------------------------------- /flake8_django/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checker.py -------------------------------------------------------------------------------- /flake8_django/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/__init__.py -------------------------------------------------------------------------------- /flake8_django/checkers/base_model_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/base_model_checker.py -------------------------------------------------------------------------------- /flake8_django/checkers/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/checker.py -------------------------------------------------------------------------------- /flake8_django/checkers/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/decorator.py -------------------------------------------------------------------------------- /flake8_django/checkers/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/issue.py -------------------------------------------------------------------------------- /flake8_django/checkers/model_content_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/model_content_order.py -------------------------------------------------------------------------------- /flake8_django/checkers/model_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/model_dunder_str.py -------------------------------------------------------------------------------- /flake8_django/checkers/model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/model_fields.py -------------------------------------------------------------------------------- /flake8_django/checkers/model_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/model_form.py -------------------------------------------------------------------------------- /flake8_django/checkers/model_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/model_meta.py -------------------------------------------------------------------------------- /flake8_django/checkers/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/render.py -------------------------------------------------------------------------------- /flake8_django/checkers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/flake8_django/checkers/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/abstract_model_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/abstract_model_dunder_str.py -------------------------------------------------------------------------------- /tests/fixtures/abstract_model_without_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/abstract_model_without_dunder_str.py -------------------------------------------------------------------------------- /tests/fixtures/model_abstract_with_meta_without_verbose_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_abstract_with_meta_without_verbose_name.py -------------------------------------------------------------------------------- /tests/fixtures/model_content_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_content_order.py -------------------------------------------------------------------------------- /tests/fixtures/model_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_dunder_str.py -------------------------------------------------------------------------------- /tests/fixtures/model_form_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_form_exclude.py -------------------------------------------------------------------------------- /tests/fixtures/model_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_form_fields.py -------------------------------------------------------------------------------- /tests/fixtures/model_form_fields_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_form_fields_all.py -------------------------------------------------------------------------------- /tests/fixtures/model_inherited_from_abstract_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_inherited_from_abstract_model.py -------------------------------------------------------------------------------- /tests/fixtures/model_with_meta_without_verbose_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_with_meta_without_verbose_name.py -------------------------------------------------------------------------------- /tests/fixtures/model_without_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_without_dunder_str.py -------------------------------------------------------------------------------- /tests/fixtures/model_without_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/fixtures/model_without_meta.py -------------------------------------------------------------------------------- /tests/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_decorator.py -------------------------------------------------------------------------------- /tests/test_model_content_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_model_content_order.py -------------------------------------------------------------------------------- /tests/test_model_dunder_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_model_dunder_str.py -------------------------------------------------------------------------------- /tests/test_model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_model_fields.py -------------------------------------------------------------------------------- /tests/test_model_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_model_form.py -------------------------------------------------------------------------------- /tests/test_model_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_model_meta.py -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/test_render.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocioar/flake8-django/HEAD/tests/utils.py --------------------------------------------------------------------------------