Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eaf0118

Browse files
committed
Describe isort's multi_line_output setting
These changes follow up the "Fix and improve tests for Python != 3.7" PR. The multi_line_output was already set to 3 in the "Add initial black formatting" PR, so after rebasing to master this commit contains only comment that describes a magic number from the isort configuration file. Corresponding PR: - open-telemetry#109 Related discussions: - open-telemetry#95 (comment) - open-telemetry#95 (comment)
1 parent 9aba630 commit eaf0118

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.isort.cfg

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
[settings]
2-
multi_line_output=3
32
include_trailing_comma=True
43
force_grid_wrap=0
54
use_parentheses=True
65
line_length=79
6+
7+
; 3 stands for Vertical Hanging Indent, e.g.
8+
; from third_party import (
9+
; lib1,
10+
; lib2,
11+
; lib3,
12+
; )
13+
; docs: https://github.com/timothycrosley/isort#multi-line-output-modes
14+
multi_line_output=3

0 commit comments

Comments
 (0)