Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Commit 5de022e

Browse files
committed
start using mypy for a checking source code
1 parent 61e8108 commit 5de022e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.mypy.ini

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[mypy]
2+
# no_incremental = True
3+
# disallow_untyped_defs = True
4+
extra_checks = True
5+
strict_equality = True
6+
warn_incomplete_stub = True
7+
warn_no_return = True
8+
warn_redundant_casts= True
9+
warn_return_any = True
10+
warn_unreachable = True
11+
warn_unused_configs = True
12+
warn_unused_ignores = True
13+
14+
[mypy-ConfigParser.*]
15+
ignore_missing_imports = True
16+
17+
[mypy-setuptools.*]
18+
ignore_missing_imports = True

0 commit comments

Comments
 (0)