summaryrefslogtreecommitdiff
path: root/.isort.cfg
diff options
context:
space:
mode:
authorJens Diemer <github.com@jensdiemer.de>2020-02-07 12:24:01 +0100
committerGitHub <noreply@github.com>2020-02-07 12:24:01 +0100
commit3d44e2122aaa40888cb43559996fdc2a702b9491 (patch)
tree8b96cef227ca6be81829cfe26315ecd1261771f3 /.isort.cfg
parent8f9c18aa380147cfea3318a1170601cd2c670c1d (diff)
parent722e954ef7affb76edc238e756e06c43b329bed7 (diff)
downloadcreole-3d44e2122aaa40888cb43559996fdc2a702b9491.tar.gz
Merge pull request #45 from jedie/fix#44
Fix #44 by move "docutils" and "poetry-publish" as dev-dependencies
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