07c48eb7d0
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 <xuxingliang@xiaomi.com>
11 lines
157 B
INI
11 lines
157 B
INI
[flake8]
|
|
ignore = W503,W605,E203
|
|
max-complexity = 27
|
|
max-line-length = 125
|
|
multi_line_output=3
|
|
show-source = True
|
|
statistics = True
|
|
|
|
[isort]
|
|
profile = black
|