From e636b6947dc6f1029cf5b0043d473a86a38316b5 Mon Sep 17 00:00:00 2001 From: swve Date: Sun, 7 May 2023 20:21:17 +0000 Subject: [PATCH] chore: ignore E501 rule --- ruff.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ruff.toml diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 00000000..227f374c --- /dev/null +++ b/ruff.toml @@ -0,0 +1,3 @@ +[tool.ruff] +# E501 line too long (82 > 79 characters) +ignore = ["E501"]