It's weird to me to as a programmer to categorize space/tabs and new lines as empty or invisible.
It only makes sense if you're writing by hand on paper or designing a page, sure wherever you don't write is empty. But even then that's still visible space.
Then most language we currently use still rely on spaces in critical ways. `public function a()` and `publicfunctiona()`are not equivalent and there's no replacement character for the spaces.
Now, more power to you to like braces, same way some languages like dollar signs.
Nearly every editor has a "show whitespace" option.[0]
I still don't understand why some people don't use it. Even in non-whitespace sensitive languages, I need to see the whitespace so that I can tell if the formatting is off or not. Also make the code easier to read as I can literally see how far the code is intended instead of having to guess by amount of space.
Sure, automatic code formatting solves most of the issues but it is still good to have actual control over your whitespace.
[0] Except VIM which vexes me greatly. Might be one of the reasons whitespace sensitive languages are disliked by certain programmers?