From a2aacbfad56c21b259fd36487d4e579176ac8967 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 23 Nov 2024 12:58:47 +0100 Subject: Move mypy.ini and ruff.toml to top level This allows reusing them for integration-test-wrapper.py as well. --- mypy.ini | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 mypy.ini (limited to 'mypy.ini') diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000000..c9836169c1 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,22 @@ +[mypy] +python_version = 3.9 +# belonging to --strict +warn_unused_configs = true +disallow_any_generics = true +disallow_subclassing_any = true +disallow_untyped_calls = true +disallow_untyped_defs = true +disallow_untyped_decorators = true +disallow_incomplete_defs = true +check_untyped_defs = true +no_implicit_optional = true +warn_redundant_casts = true +warn_unused_ignores = false +warn_return_any = true +no_implicit_reexport = true +# extra options not in --strict +pretty = true +show_error_codes = true +show_column_numbers = true +warn_unreachable = true +strict_equality = true -- cgit v1.2.3