├── .github └── workflows │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _templates └── python │ └── material │ └── labels.html ├── docs ├── api │ ├── dynamic_stubs │ │ └── rules.md │ ├── explicit_type_hints │ │ └── rules.md │ └── typing.md ├── assets │ ├── demo.svg │ └── mypy-vscode-extension.png ├── changelog.md ├── context.md ├── index.md └── usage │ ├── dynamic_stubs.md │ └── explicit_type_hints.md ├── mkdocs.yml ├── pyproject.toml ├── requirements ├── requirements-dev.in ├── requirements-dev.txt ├── requirements-docs.in ├── requirements-docs.txt ├── requirements-test.in ├── requirements-test.txt ├── requirements.in └── requirements.txt ├── setup.py ├── src └── django_autotyping │ ├── __init__.py │ ├── _compat.py │ ├── app_settings.py │ ├── apps.py │ ├── codemodding │ ├── __init__.py │ ├── codemods │ │ ├── __init__.py │ │ ├── base.py │ │ └── forward_relation_typing_codemod.py │ ├── django_context.py │ ├── main.py │ ├── models.py │ └── vendoring │ │ ├── __init__.py │ │ └── monkeytype │ │ ├── __init__.py │ │ └── type_checking_imports_transformer.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── add_type_hints.py │ │ └── generate_stubs.py │ ├── py.typed │ ├── stubbing │ ├── __init__.py │ ├── codemods │ │ ├── __init__.py │ │ ├── _global_settings_types.py │ │ ├── _model_creation.py │ │ ├── _utils.py │ │ ├── auth_functions_codemod.py │ │ ├── base.py │ │ ├── call_command_codemod.py │ │ ├── constants.py │ │ ├── create_overload_codemod.py │ │ ├── forward_relation_overload_codemod.py │ │ ├── get_model_overload_codemod.py │ │ ├── model_init_overload_codemod.py │ │ ├── query_lookups_overload_codemod.py │ │ ├── reverse_overload_codemod.py │ │ ├── settings_codemod.py │ │ └── template_loading_codemod.py │ └── django_context │ │ ├── __init__.py │ │ ├── _management_utils.py │ │ ├── _template_utils.py │ │ ├── _url_utils.py │ │ └── django_context.py │ └── typing.py ├── tests ├── codemodding │ └── test_dja001.py ├── codemodtestproj │ ├── codemodtestproj │ │ ├── __init__.py │ │ ├── firstapp │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── models.py │ │ ├── secondapp │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── models.py │ │ └── settings.py │ ├── manage.py │ └── urls.py ├── conftest.py ├── helpers │ ├── __init__.py │ └── utils.py ├── stubbing │ ├── __init__.py │ ├── test_stubs.py │ └── testfiles │ │ ├── djas001.py │ │ ├── djas001_allow_non_set_type.py │ │ ├── djas001_no_plain_references.py │ │ ├── djas002_003.py │ │ ├── djas002_003_no_model_fields_optional.py │ │ ├── djas010.py │ │ ├── djas011.py │ │ ├── djas016.py │ │ └── djas017.py ├── stubstestproj │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ └── models.py │ ├── appwithoutmodelsmodule │ │ ├── __init__.py │ │ ├── apps.py │ │ └── extra_models │ │ │ └── __init__.py │ ├── customtemplatesdir │ │ ├── customtemplate.html │ │ └── nested │ │ │ └── template.html │ ├── firstapp │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── models.py │ │ └── templates │ │ │ └── firstapptemplate.html │ ├── secondapp │ │ ├── __init__.py │ │ ├── apps.py │ │ └── models.py │ ├── settings.py │ └── urls.py └── unit │ ├── __init__.py │ └── test_app_settings.py └── tox.ini /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/README.md -------------------------------------------------------------------------------- /_templates/python/material/labels.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/dynamic_stubs/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/api/dynamic_stubs/rules.md -------------------------------------------------------------------------------- /docs/api/explicit_type_hints/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/api/explicit_type_hints/rules.md -------------------------------------------------------------------------------- /docs/api/typing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/api/typing.md -------------------------------------------------------------------------------- /docs/assets/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/assets/demo.svg -------------------------------------------------------------------------------- /docs/assets/mypy-vscode-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/assets/mypy-vscode-extension.png -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /docs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/context.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/usage/dynamic_stubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/usage/dynamic_stubs.md -------------------------------------------------------------------------------- /docs/usage/explicit_type_hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/docs/usage/explicit_type_hints.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/requirements-dev.in: -------------------------------------------------------------------------------- 1 | -c requirements.txt 2 | django-stubs 3 | mypy 4 | ruff 5 | -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements-dev.txt -------------------------------------------------------------------------------- /requirements/requirements-docs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements-docs.in -------------------------------------------------------------------------------- /requirements/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements-docs.txt -------------------------------------------------------------------------------- /requirements/requirements-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements-test.in -------------------------------------------------------------------------------- /requirements/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements-test.txt -------------------------------------------------------------------------------- /requirements/requirements.in: -------------------------------------------------------------------------------- 1 | django~=4.2.0 2 | libcst 3 | typing_extensions 4 | -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/setup.py -------------------------------------------------------------------------------- /src/django_autotyping/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.1" 2 | -------------------------------------------------------------------------------- /src/django_autotyping/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/_compat.py -------------------------------------------------------------------------------- /src/django_autotyping/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/app_settings.py -------------------------------------------------------------------------------- /src/django_autotyping/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/apps.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/codemods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/codemods/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/codemods/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/codemods/base.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/codemods/forward_relation_typing_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/codemods/forward_relation_typing_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/django_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/django_context.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/main.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/models.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/vendoring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/vendoring/monkeytype/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/vendoring/monkeytype/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/codemodding/vendoring/monkeytype/type_checking_imports_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/codemodding/vendoring/monkeytype/type_checking_imports_transformer.py -------------------------------------------------------------------------------- /src/django_autotyping/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_autotyping/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_autotyping/management/commands/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/management/commands/_utils.py -------------------------------------------------------------------------------- /src/django_autotyping/management/commands/add_type_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/management/commands/add_type_hints.py -------------------------------------------------------------------------------- /src/django_autotyping/management/commands/generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/management/commands/generate_stubs.py -------------------------------------------------------------------------------- /src/django_autotyping/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/_global_settings_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/_global_settings_types.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/_model_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/_model_creation.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/_utils.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/auth_functions_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/auth_functions_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/base.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/call_command_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/call_command_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/constants.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/create_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/create_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/forward_relation_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/forward_relation_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/get_model_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/get_model_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/model_init_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/model_init_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/query_lookups_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/query_lookups_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/reverse_overload_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/reverse_overload_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/settings_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/settings_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/codemods/template_loading_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/codemods/template_loading_codemod.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/django_context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/django_context/__init__.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/django_context/_management_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/django_context/_management_utils.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/django_context/_template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/django_context/_template_utils.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/django_context/_url_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/django_context/_url_utils.py -------------------------------------------------------------------------------- /src/django_autotyping/stubbing/django_context/django_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/stubbing/django_context/django_context.py -------------------------------------------------------------------------------- /src/django_autotyping/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/src/django_autotyping/typing.py -------------------------------------------------------------------------------- /tests/codemodding/test_dja001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodding/test_dja001.py -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/firstapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/firstapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/codemodtestproj/firstapp/apps.py -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/firstapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/codemodtestproj/firstapp/models.py -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/secondapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/secondapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/codemodtestproj/secondapp/apps.py -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/secondapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/codemodtestproj/secondapp/models.py -------------------------------------------------------------------------------- /tests/codemodtestproj/codemodtestproj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/codemodtestproj/settings.py -------------------------------------------------------------------------------- /tests/codemodtestproj/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/codemodtestproj/manage.py -------------------------------------------------------------------------------- /tests/codemodtestproj/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/helpers/__init__.py -------------------------------------------------------------------------------- /tests/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/helpers/utils.py -------------------------------------------------------------------------------- /tests/stubbing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubbing/test_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/test_stubs.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas001.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas001_allow_non_set_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas001_allow_non_set_type.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas001_no_plain_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas001_no_plain_references.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas002_003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas002_003.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas002_003_no_model_fields_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas002_003_no_model_fields_optional.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas010.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas011.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas016.py -------------------------------------------------------------------------------- /tests/stubbing/testfiles/djas017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubbing/testfiles/djas017.py -------------------------------------------------------------------------------- /tests/stubstestproj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/accounts/models.py -------------------------------------------------------------------------------- /tests/stubstestproj/appwithoutmodelsmodule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/appwithoutmodelsmodule/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/appwithoutmodelsmodule/apps.py -------------------------------------------------------------------------------- /tests/stubstestproj/appwithoutmodelsmodule/extra_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/appwithoutmodelsmodule/extra_models/__init__.py -------------------------------------------------------------------------------- /tests/stubstestproj/customtemplatesdir/customtemplate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/customtemplatesdir/nested/template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/firstapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/firstapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/firstapp/apps.py -------------------------------------------------------------------------------- /tests/stubstestproj/firstapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/firstapp/models.py -------------------------------------------------------------------------------- /tests/stubstestproj/firstapp/templates/firstapptemplate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/secondapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubstestproj/secondapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/secondapp/apps.py -------------------------------------------------------------------------------- /tests/stubstestproj/secondapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/secondapp/models.py -------------------------------------------------------------------------------- /tests/stubstestproj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/stubstestproj/settings.py -------------------------------------------------------------------------------- /tests/stubstestproj/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] 2 | -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tests/unit/test_app_settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viicos/django-autotyping/HEAD/tox.ini --------------------------------------------------------------------------------