[Lint] Use a shorter line length for isort
This commit is contained in:
parent
983ee7b973
commit
6bf906a849
15
setup.cfg
15
setup.cfg
|
@ -5,7 +5,7 @@ all_files = 1
|
||||||
|
|
||||||
[py2app]
|
[py2app]
|
||||||
app = ['deluge/main.py']
|
app = ['deluge/main.py']
|
||||||
#arch = x86_64
|
# arch = x86_64
|
||||||
arch = i386
|
arch = i386
|
||||||
iconfile = osx/deluge.icns
|
iconfile = osx/deluge.icns
|
||||||
site-packages = false
|
site-packages = false
|
||||||
|
@ -15,9 +15,10 @@ includes = glib, gio, cairo, pango, pangocairo, atk, gobject, gtk.keysyms,
|
||||||
frameworks = CoreFoundation, Foundation, AppKit
|
frameworks = CoreFoundation, Foundation, AppKit
|
||||||
|
|
||||||
[isort]
|
[isort]
|
||||||
known_standard_library=unicodedata
|
known_standard_library = unicodedata
|
||||||
known_third_party=pygtk,gtk,gobject,gtk.gdk,pango,cairo,pangocairo,twisted,pytest,OpenSSL,pkg_resources,chardet,bbfreeze,win32verstamp,mock
|
known_third_party = pygtk, gtk, gobject, gtk.gdk, pango, cairo, pangocairo, twisted,
|
||||||
known_first_party=msgfmt
|
pytest, OpenSSL, pkg_resources, chardet, bbfreeze, win32verstamp, mock
|
||||||
order_by_type=true
|
known_first_party = msgfmt
|
||||||
line_length=120
|
order_by_type = true
|
||||||
not_skip=__init__.py
|
line_length = 120
|
||||||
|
not_skip = __init__.py
|
||||||
|
|
Loading…
Reference in New Issue