(I wouldn't be
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 length further)...
```lang=python
'AbuseFilter': ['AntiSpoof', 'CentralAuth', 'CodeEditor',
'CheckUser', 'ConfirmEdit', 'Echo',
'Renameuser', 'Scribunto', 'EventLogging'],
```
We can have something like
```lang=json
'AbuseFilter': [
'AntiSpoof',
'CentralAuth',
'CodeEditor',
'CheckUser',
'ConfirmEdit',
'Echo',
'Renameuser',
'Scribunto',
'EventLogging'
],
```
or
```lang=yaml
AbuseFilter:
- AntiSpoof
- CentralAuth
- CodeEditor
- CheckUser
- ConfirmEdit
- Echo
- Renameuser
- Scribunto
- EventLogging
```