Hacker News new | ask | show | jobs
by adammarples 1279 days ago
Just put a versioned black into pre-commit yaml and put that in your source and forget about it
1 comments

So now we have one more (useless) build requirement for developers?
pre-commit is very useful, in my opinion. When organising code from a lot of Python developers at least, getting the boring stuff like formatting, import ordering, linting, mypy etc. sorted is a time saver.
Do you know how slow all of that is? Do you want to run all of that per every commit? The result would be people making a monocommit rather than incremental commits that is easy to review one by one.
I do like pre-commit for enforcing linted and typed code but the speed (or lack thereof) does hurt.
Yes, so fast that it makes no difference at all to me. How slow do you think black is?