From 0319228ba1013a3158e6a59522c6eb3802ed5015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Kub=C3=AD=C4=8Dek?= Date: Tue, 4 Mar 2025 13:52:44 +0100 Subject: [PATCH] ruff: add configuration --- ruff.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ruff.toml diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 0000000..d02b9fd --- /dev/null +++ b/ruff.toml @@ -0,0 +1,5 @@ +[lint] +ignore = [ + # Use a single `if` statement instead of nested `if` statements + "SIM102", +] \ No newline at end of file