From 9565ea4513c33ccabe0bf887c7cd5076c9c06206 Mon Sep 17 00:00:00 2001 From: Tommy Ip Date: Wed, 8 Nov 2017 02:16:11 +0100 Subject: [PATCH] python: Add settings for isort. Commit msg tweaked by rht. Based on https://github.com/zulip/zulip/pull/3318. Content tweaked by tabbott. --- .isort.cfg | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000000..18dac9384a --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,8 @@ +[settings] +line_length = 79 +multi_line_output = 2 +balanced_wrapping = true +known_third_party = django, ujson, sqlalchemy +known_first_party = zerver, zproject, version, confirmation, zilencer, analytics, frontend_tests, scripts, corporate +sections = FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER +lines_after_imports = 1