I'm trying to whitelist checkers from a pylintrc file for pylint, but when I have:
[MESSAGES CONTROL]
disable=all
enable=old-style-class
nothing is outputted. When I comment out the `disable` line then everything is outputted. And if I set `disable` to something like `no-init` then that works, so I know the pylintrc file is working properly.
How can I get the equivalent of --disable=all specified in a pylintrc file so I can select exactly what checkers I want to run?