diff options
author | Calum Lind <calumlind@gmail.com> | 2018-10-02 16:39:51 +0200 |
---|---|---|
committer | Calum Lind <calumlind@gmail.com> | 2018-10-03 16:21:53 +0200 |
commit | b1cdc32f7357e9777eb6cc2d90094c7d122af2eb (patch) | |
tree | 9106ac399a7df178c8dbed6fe58009d36b18159a /tox.ini | |
parent | [Common] Fix config missing value assignment (diff) | |
download | deluge-b1cdc32f7357e9777eb6cc2d90094c7d122af2eb.tar.xz deluge-b1cdc32f7357e9777eb6cc2d90094c7d122af2eb.zip |
[Lint] Use Black to auto-format code
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.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -3,21 +3,6 @@ # # Usage: `pip install tox` and then run `tox` from this directory. -[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, - -[pycodestyle] -max-line-length = 120 - [tox] envlist = py27, flake8, docs minversion=2.0 |