forked from metabrainz/picard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.isort.cfg
28 lines (28 loc) · 806 Bytes
/
.isort.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Configuration for isort tool
# https://github.com/timothycrosley/isort
#
# Possible settings are listed at https://github.com/timothycrosley/isort/wiki/isort-Settings
#
# It can easily be installed using `pip install isort`
#
[settings]
combine_as_imports=True
default_section=LOCALFOLDER
force_grid_wrap=True
force_sort_within_sections=True
include_trailing_comma=True
indent=' '
known_picard=picard
known_picard_ui=picard.ui
known_qt=PyQt5
known_resources=picard.resources
known_test=test.*
known_third_party=mutagen
multi_line_output=3
order_by_type=True
sections=FUTURE,STDLIB,THIRDPARTY,QT,TEST,PICARD,LOCALFOLDER,RESOURCES,PICARD_UI
skip_glob=**/ui_*.py
skip=./tagger.py,picard/resources.py,scripts/picard.in,picard/const/__init__.py
not_skip=__init__.py
use_parentheses=1
lines_after_imports=2