From b04bf5a7a5c957cd4182e5946db1d60147ac1e2d Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Thu, 11 Jan 2018 19:23:55 +0100 Subject: [PATCH] Add isort config --- .isort.cfg | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000..9b4a582 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,10 @@ +[isort] +balanced_wrapping = True +combine_as_imports = True +default_section = THIRDPARTY +include_trailing_comma = True +known_first_party = byro +line_length = 80 +multi_line_output = 5 +not_skip = __init__.py +skip = migrations,settings.py,wsgi.py,celery_app.py