File tree Expand file tree Collapse file tree 2 files changed +31
-24
lines changed
Expand file tree Collapse file tree 2 files changed +31
-24
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -129,3 +129,34 @@ norecursedirs = [
129129 " .git" ,
130130 " testing_config" ,
131131]
132+
133+ [tool .mypy ]
134+ python_version = 3.9
135+ show_error_codes = true
136+ follow_imports = " silent"
137+ ignore_missing_imports = true
138+ strict_equality = true
139+ warn_incomplete_stub = true
140+ warn_redundant_casts = true
141+ warn_unused_configs = true
142+ warn_unused_ignores = true
143+ enable_error_code = " ignore-without-code"
144+ check_untyped_defs = true
145+ disallow_incomplete_defs = true
146+ disallow_subclassing_any = true
147+ disallow_untyped_calls = true
148+ disallow_untyped_decorators = true
149+ disallow_untyped_defs = true
150+ no_implicit_optional = true
151+ warn_return_any = true
152+ warn_unreachable = true
153+ exclude = [
154+ " controller.py" ,
155+ " stick.py" ,
156+ " parser.py" ,
157+ " nodes" ,
158+ " messages" ,
159+ " connections" ,
160+ " helper.py" ,
161+ " smile.py" ,
162+ ]
You can’t perform that action at this time.
0 commit comments