Why is it a default that in `setup.cfg` there is `...
# questions
g
Why is it a default that in
setup.cfg
there is
extend-ignore=E203
? I see that it ignores a white space convention that is normally checked for using Flake8, but it wasn't clear to me why it is exempted. Including white space in some cases is considered a PEP8 pet peeve. Was it making readability worse? Or something else? https://www.flake8rules.com/rules/E203.html https://peps.python.org/pep-0008/#pet-peeves
g
@Deepyaman Datta That clears my concern right up! Thank you!
🎉 1