From 0388145b815e10d251a357866821ecbc92b236b4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 29 Aug 2019 01:14:31 +0300 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