mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-20 16:30:20 +00:00
b1cdc32f73
The move to using auto-formatter makes it easier to read, submit and speeds up development time. https://github.com/ambv/black/ Although I would prefer 79 chars, the default line length of 88 chars used by black suffices. The flake8 line length remains at 120 chars since black does not touch comments or docstrings and this will require another round of fixes. The only black setting that is not standard is the use of double-quotes for strings so disabled any formatting of these. Note however that flake8 will still flag usage of double-quotes. I may change my mind on double vs single quotes but for now leave them. A new pyproject.toml file has been created for black configuration.
51 lines
1.3 KiB
INI
51 lines
1.3 KiB
INI
[build_docs]
|
|
source-dir = docs/source
|
|
build-dir = docs/build
|
|
all_files = true
|
|
fresh-env = true
|
|
|
|
[py2app]
|
|
app = ['deluge/ui/ui_entry.py']
|
|
arch = x86_64
|
|
# arch = i386
|
|
iconfile = packaging/osx/deluge.icns
|
|
site-packages = false
|
|
includes = glib, gio, cairo, pango, pangocairo, atk, gobject, gtk.keysyms,
|
|
twisted.internet, twisted.internet.utils, twisted.protocols,
|
|
zope.interface, mako.cache, email.mime, libtorrent, gtkosx_application,
|
|
HTMLParser
|
|
frameworks = CoreFoundation, Foundation, AppKit
|
|
|
|
[isort]
|
|
known_standard_library = future_builtins
|
|
known_third_party =
|
|
# Ignore Windows specific modules.
|
|
bbfreeze, win32verstamp,
|
|
# Ignore gtk modules, primarily for tox testing.
|
|
pygtk, gtk, gobject, gtk.gdk, pango, cairo, pangocairo
|
|
known_first_party = msgfmt, deluge
|
|
order_by_type = true
|
|
not_skip = __init__.py
|
|
# Black compatible settings
|
|
multi_line_output=3
|
|
include_trailing_comma=True
|
|
force_grid_wrap=0
|
|
line_length=88
|
|
use_parentheses=True
|
|
|
|
[flake8]
|
|
max-line-length = 120
|
|
builtins = _,_n,__request__
|
|
exclude = .git,.tox,dist,build
|
|
ignore =
|
|
# A003 Class attribute is a python builtin.
|
|
A003,
|
|
# C813, C815, C816: PY3 missing trailing commas.
|
|
C813,C815,C816,
|
|
# W503 line break before binary operator.
|
|
W503,
|
|
E203
|
|
|
|
[pycodestyle]
|
|
max-line-length = 88
|