We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ee2d3 commit d349c72Copy full SHA for d349c72
.pre-commit-config.yaml
@@ -17,3 +17,12 @@ repos:
17
language: system
18
stages: [commit]
19
types: [python]
20
+
21
+ - id: mypy
22
+ name: mypy
23
+ entry: mypy
24
+ args: [--no-incremental]
25
+ language: system
26
+ stages: [commit]
27
+ types: [python]
28
+ require_serial: true
scripts/lint
@@ -3,13 +3,7 @@
3
set -e
4
5
echo
6
-echo " -- CHECKING TYPES WITH MYPY --"
7
-echo
8
-
9
-mypy docs pystac setup.py tests
10
11
12
-echo " -- CHECKING WITH BLACK AND FLAKE8 --"
+echo " -- CHECKING WITH BLACK, FLAKE8 AND MYPY --"
13
14
15
pre-commit run --all-files
0 commit comments