I'm using Python Black to automatically reduce line length to 88 but the pep8 linter enforces a 79 character limit. I want to turn this off
My .codeclimate.yaml
file starts with:
engines:
pep8:
enabled: true
checks:
E501: # Line length checks
enabled: false
but this doesn't seem to be respected.