(I wouldn't be surprised if this actually a dupe)
It's annoying maintaining lists of things that are subject to line length, need reordering.. Potentially breaking git blame etc.
And fighting with errors like
18:01:44 ./zuul/parameter_functions.py:624:80: E501 line too long (83 > 79 characters) 18:01:44 ERROR: InvocationError for command /src/.tox/lint/bin/flake8 (exited with code 1)
Rather than having this in python, and putting everything on individual lines (increasing the python file length further)...
'AbuseFilter': ['AntiSpoof', 'CentralAuth', 'CodeEditor', 'CheckUser', 'ConfirmEdit', 'Echo', 'Renameuser', 'Scribunto', 'EventLogging'],
We can have something like
'AbuseFilter': [ 'AntiSpoof', 'CentralAuth', 'CodeEditor', 'CheckUser', 'ConfirmEdit', 'Echo', 'Renameuser', 'Scribunto', 'EventLogging' ],
or
AbuseFilter: - AntiSpoof - CentralAuth - CodeEditor - CheckUser - ConfirmEdit - Echo - Renameuser - Scribunto - EventLogging