Skip to content

Commit 2be0f66

Browse files
committed
Add to README
1 parent 66a5257 commit 2be0f66

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Few important things:
2222
* It comes with [`whitenoise`](http://whitenoise.evans.io/en/stable/) setup.
2323
* It can be easily deployed to Heroku.
2424
* It comes with an example list API, that uses [`django-filter`](https://django-filter.readthedocs.io/en/stable/) for filtering & pagination from DRF.
25+
* It comes with [`mypy`](https://mypy.readthedocs.io/en/stable/) configured, using both <https://github.com/typeddjango/django-stubs> and <https://github.com/typeddjango/djangorestframework-stubs/>
26+
* Basic `mypy` configuration is located in [`setup.cfg`](setup.cfg)
27+
* `mypy` is ran as a build step in [`.github/workflows/django.yml`](.github/workflows/django.yml)
2528

2629
## General API Stuff
2730

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ django_settings_module = "config.django.base"
1515

1616
[mypy-config.*]
1717
# Ignore everything related to Django config
18-
1918
ignore_errors = true
19+
2020
[mypy-styleguide_example.*.migrations.*]
2121
# Ignore Django migrations
2222
ignore_errors = true

0 commit comments

Comments
 (0)