feat: project init

This commit is contained in:
Alexandre Teles
2023-04-29 18:14:26 -03:00
parent c10985467a
commit 856fc66717
4 changed files with 144 additions and 0 deletions

17
mypy.ini Normal file
View File

@@ -0,0 +1,17 @@
[mypy]
python_version = 3.10
pretty = true
follow_imports = normal
namespace_packages = true
show_column_numbers = true
show_error_codes = true
allow_redefinition = false
check_untyped_defs = true
implicit_reexport = false
strict_optional = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
warn_unreachable = true