From adab93fad600a112cae2a4064af693fc3edcb3b6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Dec 2018 16:09:14 -0400 Subject: [PATCH] Development: Add a default isort configuration Add a config file for isort that most closely approaches Mayan's best practices. Signed-off-by: Roberto Rosario --- .isort.cfg | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000000..424d3ae65b --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,6 @@ +[settings] +default_section = THIRDPARTY +known_first_party = mayan +known_django = django +multi_line_output = 5 +sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER