From 4cc26402e846733201d3d283d70deec394000dd0 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 18 Jan 2023 19:52:05 +0200 Subject: Add baseline ruff configuration --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..977d84b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[tool.ruff] +target-version = "py37" +select = [] +ignore = [ + "C901", # Complexity + "E501", # Line length + "E741", # Ambiguous variable name +] +extend-exclude = [ + "tests/messages/data", +] -- cgit v1.2.1