summary refs log tree commit diff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorkleph <kleph+gh@kleph.info>2020-10-28 13:49:08 +0100
committerGitHub <noreply@github.com>2020-10-28 08:49:08 -0400
commit29ce6d43b533634a8b743e16e99ef3d025802e96 (patch)
treec1da50aa1758b47bdabb32e2c2a9a8982d219bd4 /CONTRIBUTING.md
parentDon't pull event from DB when handling replication traffic. (#8669) (diff)
downloadsynapse-29ce6d43b533634a8b743e16e99ef3d025802e96.tar.xz
Run mypy as part of the lint.sh script. (#8633)
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c17e3b2399..f7bea79b0d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -46,7 +46,7 @@ locally. You'll need python 3.6 or later, and to install a number of tools:
 
 ```
 # Install the dependencies
-pip install -e ".[lint]"
+pip install -e ".[lint,mypy]"
 
 # Run the linter script
 ./scripts-dev/lint.sh
@@ -63,7 +63,7 @@ run-time:
 ./scripts-dev/lint.sh path/to/file1.py path/to/file2.py path/to/folder
 ```
 
-You can also provided the `-d` option, which will lint the files that have been
+You can also provide the `-d` option, which will lint the files that have been
 changed since the last git commit. This will often be significantly faster than
 linting the whole codebase.