From 23d5abeb760ff613ad87c874022bd9ee59268e09 Mon Sep 17 00:00:00 2001 From: xuxingliang Date: Fri, 16 Aug 2024 09:58:13 +0800 Subject: [PATCH] tools: make isort and black formatters to work together Config multi line output to mode 3, so isort and black can agree with each other: ``` 3 - Vertical Hanging Indent from third_party import ( lib1, lib2, lib3, lib4, ) ``` Signed-off-by: xuxingliang --- .github/linters/setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/linters/setup.cfg b/.github/linters/setup.cfg index b0224c147..1f065ea75 100644 --- a/.github/linters/setup.cfg +++ b/.github/linters/setup.cfg @@ -2,6 +2,7 @@ ignore = W503,W605,E203 max-complexity = 27 max-line-length = 125 +multi_line_output=3 show-source = True statistics = True