- lots of import lines when wrapped
- removes parenthesis around lines
- removes semantic line breaks that allow you to provide structure to multiple lines
- will add trailing full stops to doc string lines
Makes very minimal changes and allows semantic formatting.
foo = [1,2,3,]
black:
foo = [
1,
2,
3,
]
autopep8:
foo = [1, 2, 3, ]
To make isort's output black compatible:
[tool.isort]
# make isort compatible with black
line_length = 88
multi_line_output = 3
include_trailing_comma = true