Yeah when I say tabs i mean tabs exclusively. My point is to completely forbid spaces for indentation in any case, and always use one tab for one indent level.
Github really needs a way to adjust tab size, or at least default it to
something reasonable. As for now, you can add an .editorconfig in your project
root with the following contents which will set the tab size straight:
root = true
[*.cs]
indent_style = tab
indent_size = 4
Run
