Are there objective reasons for using spaces instead of tabs for indenting files as per PSR-2 standard, can someone provide:
- facts,
- references,
- specific expertise
on which PSR-2 standard is based?
Authors of PSR-2 standard had in mind something more than "look and feel", something more than just opinion based thing, and lots of people have trouble understanding why spaces are better during teamwork.
Explanation on accepted answer:
According to Farsides' answer: repositories thing may be an exact case of why spaces are in PSR-2 explained as indentation tool. PSR-2 is standard developed to assist teamwork. Single accidental spaces at the beginning of line - when using tabs - may not be visible in the IDE and can sneak out to repository. If a couple of people work on same file it is highly possible to generate unnecessary conflicts. Using spaces instead of tabs makes it possible to easily catch such an accidental space on eyeball and this is probably a reason, why using them become a standard.
Facts:
1. GIT and other version control systems treat white-space differently
Based on my experience, we faced on our projects: GIT and other version control systems treat invisible
spaces
+TABS
differently, and it leads to changes in lines, which actually haven't been affected. It's easy not to notice when there will accidentally added onespace
+TAB
= indent looks the same in IDE, but GIT will make the difference when merging. It damages your ability to effectively compare revisions in source control, which is really scary. It never going to happen when you are havingspaces
only.2. Neutralize difference in collaborator's environment (Editor, OS, preferences, etc.)
The tab width (in spaces) depends on your environment (text editor, OS, preferences, etc.), but the space width is the same everywhere. IDEs are smart enough to treat white spaces up to your personal taste, but the output generated for collaboration should be up to standards. As PSR-2 states, using only spaces, and not mixing spaces with tabs, helps to avoid problems with diffs, patches, history, and annotations. The use of spaces also makes it easy to insert fine-grained sub-indentations for inter-line alignment.
3. Statistics say: that spaces are more dominant than tabs.
This subject has been covered in depth by Google’s Felipe Hoffa on Medium. Felipe analyzed 400,000 GitHub repositories, 1 billion files, and 14 terabytes of code to determine why spaces might be better than tabs. It was a clear win for spaces over tabs.
4. Developers who use spaces make more money than those who use tabs
Using spaces instead of tabs is associated with an 8.6% higher salary. Using spaces instead of tabs is associated with as high a salary difference as an extra 2.4 years of experience. (source: Stack Overflow 2017 Developer Survey). That's an old survey and might be misleading, it's just a true statistical fact when the answer was originally written :)
5. Numerous studies on coding style importance
If every collaborator on your project would keep the same standards on coding - it would be good in the long run, collaboration is more efficient and professional, the same indent when you refactor or develop. Studies regarding that:
For example, Ben Shneiderman confirmed this in Exploratory experiments in programmer behavior:
An old 1984 study by Soloway and Ehrlich cited in Code Complete, and supported studies from The Elements of Programming Style: