From f4a1b68f3840552a87cac2ead658ca263afc7b1b Mon Sep 17 00:00:00 2001 From: SPOXY <72994898+spoxii@users.noreply.github.com> Date: Sat, 23 Aug 2025 23:42:29 +0200 Subject: [PATCH] Use the `format` subcommand and change `-l` to `--line-length` --- contributing/development/code_style_guidelines.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/development/code_style_guidelines.rst b/contributing/development/code_style_guidelines.rst index e70620e4f8e..f147f905a1c 100644 --- a/contributing/development/code_style_guidelines.rst +++ b/contributing/development/code_style_guidelines.rst @@ -293,9 +293,9 @@ command: :: - ruff -l 120 + ruff format --line-length 120 -- ``-l 120`` means that the allowed number of characters per line is 120. +- ``--line-length 120`` means that the allowed number of characters per line is 120. This number was agreed upon by the developers. - The path can point to several files, either one after the other or using wildcards like in a typical Unix shell.