2020-10-14 08:03:51 +00:00
|
|
|
# Configuring isort
|
|
|
|
# https://github.com/timothycrosley/isort/wiki/isort-Settings
|
|
|
|
|
|
|
|
[settings]
|
|
|
|
atomic=true
|
|
|
|
line_length=120
|
|
|
|
case_sensitive=false
|
|
|
|
|
2020-10-24 12:26:15 +00:00
|
|
|
skip_glob=*/migrations/*,*/volumes/*
|
2020-10-14 08:03:51 +00:00
|
|
|
|
|
|
|
# https://github.com/timothycrosley/isort#multi-line-output-modes
|
|
|
|
# 3 - Vertical Hanging Indent
|
|
|
|
multi_line_output=3
|
|
|
|
include_trailing_comma=true
|
|
|
|
|
|
|
|
known_first_party=inventory,inventory_project,inventory_tests
|
|
|
|
|
|
|
|
no_lines_before=LOCALFOLDER
|
|
|
|
|
|
|
|
default_section=THIRDPARTY
|
2020-10-16 16:06:23 +00:00
|
|
|
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|
2020-10-14 08:03:51 +00:00
|
|
|
|
|
|
|
lines_after_imports=2
|