This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit 23d5abeb760ff613ad87c874022bd9ee59268e09
Author: xuxingliang <xuxingli...@xiaomi.com>
AuthorDate: Fri Aug 16 09:58:13 2024 +0800

    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 <xuxingli...@xiaomi.com>
---
 .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
 

Reply via email to