From 3934401f686687dcc4f905574642514ebd8492ae Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Fri, 27 Sep 2024 13:12:46 +0200 Subject: [PATCH] be explicit about formatting options --- .ruff.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.ruff.toml b/.ruff.toml index 8cda820e9..249e953db 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -1,5 +1,13 @@ target-version = "py310" + line-length = 99 +[format] +# Make things format the same way as black +quote-style = "double" +indent-style = "space" +skip-magic-trailing-comma = false +line-ending = "auto" + [lint] select = ["F", "E", "W", "PLE", "PLW", "PLC"]