diff --git a/README.md b/README.md index 233ba26..a98faac 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ So far, I'm liking both. For projects like this one, HTMX is a keeper. `htpy` ha For code cleanliness, we also use: - [Ruff](https://github.com/astral-sh/ruff) for linting -- [mypy](https://mypy-lang.org/) for type checking +- [pyright](https://github.com/microsoft/pyright) for type checking ### Getting a local dev instance running diff --git a/pyproject.toml b/pyproject.toml index a3689ee..8acac52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,13 +18,6 @@ exclude = ["**/migrations/**"] typeCheckingMode = "basic" useLibraryCodeForTypes = true -[tool.mypy] -exclude = [".venv", "migrations"] -ignore_missing_imports = true -disallow_untyped_defs = false -show_error_codes = true -plugins = ["mypy_django_plugin.main"] - [tool.django-stubs] django_settings_module = "server.settings"