From 722e954ef7affb76edc238e756e06c43b329bed7 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Fri, 7 Feb 2020 11:37:37 +0100 Subject: add isort config and apply it --- .isort.cfg | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .isort.cfg (limited to '.isort.cfg') diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000..c97c6cc --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,21 @@ +# Configuring isort +# https://github.com/timothycrosley/isort/wiki/isort-Settings + +[settings] +atomic=true +line_length=119 +case_sensitive=false + +# https://github.com/timothycrosley/isort#multi-line-output-modes +# 3 - Vertical Hanging Indent +multi_line_output=3 +include_trailing_comma=true + +known_first_party=creole + +no_lines_before=LOCALFOLDER + +default_section=THIRDPARTY +sections=FUTURE,STDLIB,EXTERNAL,THIRDPARTY,FIRSTPARTY,LOCALFOLDER + +lines_after_imports=2 -- cgit v1.2.1