From 6093426f1e70b397b1b470faac5af46d3ae5ad1d Mon Sep 17 00:00:00 2001 From: Mario Lubenka Date: Mon, 7 Dec 2020 16:00:56 +0100 Subject: [PATCH] Fix syntax of iconf file and lint rule collision (#1061) According to the official config sample the iconf template in this repository was misformatted. Also two settings were added so indents of imports follow the same format as suggested by black linter. Fixes: #1050 Co-authored-by: Lukas Gravley --- TEMPLATES/.isort.cfg | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/TEMPLATES/.isort.cfg b/TEMPLATES/.isort.cfg index a865f55c..aea6856e 100644 --- a/TEMPLATES/.isort.cfg +++ b/TEMPLATES/.isort.cfg @@ -1,2 +1,8 @@ -[isort] +[settings] profile= + +; vertical hanging indent mode also used in black configuration +multi_line_output = 3 + +; necessary because black expect the trailing comma +include_trailing_comma = true