From 37cee1d3f0495e586b3cb505c1ea21a584fd0e85 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 12 Mar 2021 22:59:57 +0200 Subject: [PATCH] Add configuration for isort See: https://sourcery.ai/blog/python-best-practices/ --- 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 0000000..9eea40a --- /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