diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-12-10 18:38:34 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-12-10 18:38:34 +0900 |
commit | 3abde37d86a77c21645399f6c6e3623d61af77ee (patch) | |
tree | e9334665c58ec99e3f4468e26fcce04598303403 /setup.cfg | |
parent | fe181f44e87393eeb762613cffd90ec5a7a33435 (diff) | |
download | buildstream-3abde37d86a77c21645399f6c6e3623d61af77ee.tar.gz |
pep8: Set line length to 119, not 79
80 columns is cool but either encourages abbreviated variable names, which sucks,
or forces too many line breaks with sanely named variables.
120 columns should still discourage too many nested indentation blocks while
also allowing full variable names.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ test=pytest [tool:pytest] addopts = --verbose --basetemp ./tmp --pep8 python_files = tests/*/*.py +pep8maxlinelength = 119 pep8ignore = * E129 doc/source/conf.py ALL |