Skip to content

Commit 390392d

Browse files
committed
Add mypy.ini
1 parent 9a9ed99 commit 390392d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

mypy.ini

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Global options:
2+
3+
[mypy]
4+
python_version = 3.6
5+
6+
# Per-module options:
7+
8+
[mypy-ipython_genutils.*]
9+
ignore_missing_imports = True
10+
11+
[mypy-nbformat.*]
12+
ignore_missing_imports = True
13+
14+
[mypy-nest_asyncio.*]
15+
ignore_missing_imports = True
16+
17+
[mypy-async_generator.*]
18+
ignore_missing_imports = True
19+
20+
[mypy-traitlets.*]
21+
ignore_missing_imports = True
22+
23+
[mypy-jupyter_client.*]
24+
ignore_missing_imports = True

0 commit comments

Comments
 (0)