From 8002fb769515a68f80d12fca1d600b1b3908d780 Mon Sep 17 00:00:00 2001 From: laughingman7743 Date: Sat, 2 May 2020 16:51:42 +0900 Subject: [PATCH] Interopability with black: https://github.com/timothycrosley/isort/issues/694#issuecomment-564261886 --- setup.cfg | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 4948b4c3..f3e981a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,6 +5,8 @@ universal = 1 flake8-max-line-length = 100 [isort] -line_length = 100 -order_by_type = True -multi_line_output = 4 +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +use_parentheses=True +line_length=88