Skip to content

Commit cbbab21

Browse files
author
Manav Misra
committed
chore: 🔧
1 parent 47a3598 commit cbbab21

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

mypy.ini

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[mypy]
2+
python_version = 3.12
3+
4+
show_column_numbers = True
5+
show_error_codes = True
6+
7+
follow_imports = normal
8+
ignore_missing_imports = True
9+
10+
# be strict
11+
disallow_untyped_calls = True
12+
warn_return_any = True
13+
strict_optional = True
14+
warn_no_return = True
15+
warn_redundant_casts = True
16+
warn_unused_ignores = True
17+
disallow_untyped_defs = True
18+
check_untyped_defs = True
19+
no_implicit_reexport = True

0 commit comments

Comments
 (0)