summaryrefslogtreecommitdiff
path: root/.isort.cfg
diff options
context:
space:
mode:
Diffstat (limited to '.isort.cfg')
-rw-r--r--.isort.cfg21
1 files changed, 21 insertions, 0 deletions
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