forked from zigpy/zha-device-handlers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.isort.cfg
More file actions
20 lines (20 loc) · 670 Bytes
/
Copy path.isort.cfg
File metadata and controls
20 lines (20 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[settings]
# https://github.com/timothycrosley/isort
# https://github.com/timothycrosley/isort/wiki/isort-Settings
# splits long import on multiple lines indented by 4 spaces
profile = black
# by default isort don't check module indexes
not_skip = __init__.py
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
sections = FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
default_section = THIRDPARTY
known_first_party = zhaquirks,tests
forced_separate = tests
combine_as_imports = true
use_parentheses = true
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
line_length = 88
indent = " "