From 89f77851a33e5bccc952c18e1bb265770e14c89e Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 13 Sep 2023 11:15:22 +0200 Subject: [PATCH] (tf2_pykdl_ros) update pyproject.toml --- tf2_pykdl_ros/pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tf2_pykdl_ros/pyproject.toml b/tf2_pykdl_ros/pyproject.toml index 4ae6123..38819bc 100644 --- a/tf2_pykdl_ros/pyproject.toml +++ b/tf2_pykdl_ros/pyproject.toml @@ -1,9 +1,22 @@ [tool.black] line-length = 120 +[tool.flake8] +max-line-length = 120 + [tool.isort] +combine_as_imports = true line_length = 120 profile = "black" +skip_gitignore = true + +[tool.mypy] +disallow_untyped_defs = true +no_implicit_optional = true +pretty = true +show_error_codes = true +warn_return_any = true +warn_unused_ignores = true [tool.pytest.ini_options] filterwarnings = ["ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning"]