diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000..f1ea10fbae --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.mypy] +ignore_missing_imports = true +disallow_any_generics = true +no_implicit_optional = true +pretty = true +show_column_numbers = true +warn_redundant_casts = true +warn_return_any = true +warn_unreachable = true +namespace_packages = true +explicit_package_bases = true +exclude = ["thirdparty/"] + +[tool.black] +line-length = 120 +extend-exclude = ".*thirdparty/.*" |