Earlier quoted context omitted.
> to indent some code. Why are you manually indenting code? I don't remember ever doing that in IDEA or VS Code for ~~python,~~ java or ts. Edit: I borked about python, my bad.
Isn't indentation 'non deterministic' in Python? E.g. if I have the following: if (foo): bar() hum() how can anything other than a human decide if that 3rd line should be indented as it is or by one more level?
I suppose with very good tests, you might be able to catch something like this, but it seems impossible to me how a PR reviewer might catch a "bug" like this and not just assume that it's intentional.