From c7c0d0efcced78f16046fdba3ba38fc69a02f3b2 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 1 Nov 2021 08:21:09 +0200 Subject: [PATCH] Add setup.cfg for isort This is for sorting Python imports and warning about unused ones. --- setup.cfg | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..9eea40a7 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,6 @@ +[isort] +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +use_parentheses=True +line_length=88